I'm using Matlab version 9.10.0.1710957 (R2021a) Update 4 and in this version I can´t use the resize function.
I plug the example - from the matlab guide:
A1 = [2; 8; 3]; m = 2 B1 = resize(A1,m)
When I plug this example it appers the error: Check for incorrect argument data type or missing argument in call to function 'resize'.
Could that be some setting or something that I did in matlab? I couldn't find anyrhing online.
resize
was only added in 2023b. I don't know if it would help but you might want to considerpadarray
instead.