surfの使用、エラー;データの次元は一致しなければなりません
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (0)
Ver también
Categorías
Más información sobre ライティング、透明度、およびシェーディング en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!