Create a graph from 2 vectors and a matrix
2 ビュー (過去 30 日間)
古いコメントを表示
Hello. I have a problem plotting. I have X, Y, Z data (Coordinates and Height). X is 3950 data, Y is 3670 data, Z is 3950 x 3670 data. I write plot3 gives an error: Vectors must be the same lengths.
Please help ... How to make a schedule? I cannot delete or adjust the data, this is accurate data.
0 件のコメント
回答 (2 件)
Star Strider
2021 年 7 月 22 日
figure
surf(X,Y,Z.', 'EdgeColor','none')
to see it from the top, add:
view(0,90)
,
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!