Borrar filtros
Borrar filtros

I've written a simple code in matlab. It worked a few times, but then later started showing "surf error". What could be the reason? I am not an expert in coding or matlab.

1 visualización (últimos 30 días)
Following is a simple code I've written in matlab. This code extracts numbers from an excel sheet and makes 100 3D graphs of pressure variation with distance in the x and y direction.
x = 1:44;
y = 1:44;
for i = 1:100
a = xlsread('\\engad.foe.auckland.ac.nz\testing.xlsx','test',strcat('A',int2str(46*i-23),':','AR',int2str(46*i+20)));
figure;
surf(x,y,a);
fname = sprintf('A%d.png',i);
saveas(gcf,fname);
end
Initially, my code was working fine. But now it has started showing the following error.
Error using surf (line 57) Data dimensions must agree.
Could someone please help me out.
Thanks,
Jasnoor

Respuesta aceptada

Roger Stafford
Roger Stafford el 29 de Abr. de 2016
Well quite obviously somewhere along the line your 'a' matrix has suddenly become other than 44 x 44 in size. Your task will be to find out why.
  1 comentario
Jasnoor Singh
Jasnoor Singh el 29 de Abr. de 2016
Amazing man! Thanks for the prompt response! I did find the error, was directing the formula to the wrong cells. Thanks a lot!!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by