Plot 3D matrix
1 回表示 (過去 30 日間)
古いコメントを表示
I have a 3D matrix containing values of potential between two charges for every x,y and z value so that I can find out the potential at any point by inputting three coordinates. The problem I'm having is I am unable to plot a 3D surface plot showing the potential.
I try and use surf() but the error says the value must be scalar, vector or numerical. I do have 2 inf values where the two charges lie, is this whats causing the problem and if so how do I get around it?
6 件のコメント
Jan
2018 年 11 月 9 日
If you mention, that you get an error, please post a copy of the complete message. It is not possible that there is "another error", because Matlab stops at the first error already. "saying data dimensions dont agree" is less useful than a copy of the message, because then the readers do not have to guess in which line the error occurs.
Please post the relevant part of the code and a copy of the error message.
採用された回答
madhan ravi
2018 年 11 月 9 日
編集済み: madhan ravi
2018 年 11 月 9 日
load matlab.mat
[X3,Y3] = meshgrid((-4.5:0.1:4.5),(-4.5:0.1:4.5));
for i = 1:81
figure()
surf(X3,Y3,d(:,:,i)) %likewise 1 to 81
end
4 件のコメント
madhan ravi
2018 年 11 月 9 日
So there’s nothing wrong in it James because the data points vary in each page of d that’s why there is slight change nothing to worry about it
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Surface and Mesh Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!