エラーの原因と解決方法を教えてください
39 views (last 30 days)
Show older comments
'matlab.graphics.chart.primitive.Surface' タイプのオペランドに対して、演算子 ':' はサポートされていません。
上のようなエラーが出てしまいます。
エラー箇所は下の矢印のところです。
right(isnan(right))=0
s=surf(right)
zlim([inR axR])
% view([-30.6 57.0])
s.EdgeColor = 'none';
for n=1:s(1) ←
for m=1:s(2)
if Data(n,m,face(n,m))==0
Data(n,m,face(n,m))=1;
end
end
end
よろしくおねがいします。
0 Comments
Accepted Answer
交感神経優位なあかべぇ
on 14 Jul 2023
Edited: 交感神経優位なあかべぇ
on 14 Jul 2023
おそらくやりたいことは、n, mに変数rightのインデックスの連番をつくりたいのかなぁと予想し、下記に修正コードを書きました。
right(isnan(right))=0;
s=surf(right);
zlim([inR axR]);
% view([-30.6 57.0])
s.EdgeColor = 'none';
for n=1:size(right,1) % rightの1次元目のインデックスの連番を作成
for m=1:size(right,2)% rightの2次元目のインデックスの連番を作成
if Data(n,m,face(n,m))==0
Data(n,m,face(n,m))=1;
end
end
end
More Answers (0)
See Also
Categories
Find more on ライティング、透明度、およびシェーディング in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!