surfの使用、エラー;データの次元は一致しなければなりません
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
100×100のセルごとにそれぞれ異なった値の行列Aがあります。これをmesh関数を使用し、図を表示したいと考え、
以下のコードを試しに書いてみたのですが、エラー: surf (line 71) データの次元は一致しなければなりません。 が発生し、上手くいきません。
surfの行列で使用する場合どうしたら良いか教えてください。
x = 1:1:100;
y = x;
[X,Y] = meshgrid(x);
F = A(X,Y);
surf(X,Y,F)
0 Kommentare
Antworten (0)
Siehe auch
Kategorien
Mehr zu ライティング、透明度、およびシェーディング finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!