Filter löschen
Filter löschen

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 Ansicht (letzte 30 Tage)
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

Akzeptierte Antwort

Roger Stafford
Roger Stafford am 29 Apr. 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 Kommentar
Jasnoor Singh
Jasnoor Singh am 29 Apr. 2016
Amazing man! Thanks for the prompt response! I did find the error, was directing the formula to the wrong cells. Thanks a lot!!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by