Creating 3-D surface and contour plot from csv
3 ビュー (過去 30 日間)
古いコメントを表示
I am trying to create surface from given xlsx file and should be looks similar to this and contour looks like this
0 件のコメント
回答 (1 件)
KALYAN ACHARJYA
2021 年 2 月 10 日
編集済み: KALYAN ACHARJYA
2021 年 2 月 10 日
Please refer the MATLAB docs
data=readmatrix('180.xlsx');
figure,surf(data);
% Here matrix elements represent the heights (z direction)
See the contour function here
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Contour Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!