Info
この質問は閉じられています。 編集または回答するには再度開いてください。
Is it possible to set all data(n).x = []; without a for cycle?
2 ビュー (過去 30 日間)
古いコメントを表示
Is it possible to do the following withot a for cycle? for n = 1:N, data(n).x = []; end
0 件のコメント
回答 (1 件)
madhan ravi
2018 年 10 月 30 日
編集済み: madhan ravi
2018 年 10 月 30 日
data(1:N).x = []; %edited after Stephens comment
2 件のコメント
Stephen23
2018 年 10 月 30 日
The square brackets are not required and just hinder JIT optimization.
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!