How can I surface plot a 1000x2 matrix?
10 ビュー (過去 30 日間)
古いコメントを表示
If we assume I have a 1000x2 matrix generated using:
A = randn(1000,2);
How can I surface plot that A matrix to achieve a result similar to this image:

0 件のコメント
採用された回答
KSSV
2021 年 2 月 26 日
編集済み: KSSV
2021 年 2 月 26 日
A = randn(1000,2);
hist(A(:))
hist(A)
その他の回答 (1 件)
Steven Lord
2021 年 2 月 26 日
What does the data represent? X and Y coordinates of the points? If so where's the Z data?
Or do you have a long, thin sheet of paper and the data represents the height of points around the edges of that sheet?
x = [1 2 4 8; 0 3 3 9];
surf(x)
0 件のコメント
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




