I have a 3 column table and need help with applying meshgrid to the first two columns and reshaping the third column into a matrix to use with surf(x,y,z). I tried something like:
[X,Y]=meshgrid(table.Temperature,table.StrainRate) but got an error that it is too large of a request
Error using repmat
Requested 202005x202005 (304.0GB) array exceeds maximum array size preference
(31.6GB). This might cause MATLAB to become unresponsive.
I believe that once I get the meshgrid issue sorted I can then turn the Z column 'Stress' into a matrix using
reshape(z, size(X))
Is this correct?
Thanks for any help!