Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Is it possible to set all data(n).x = []; without a for cycle?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Is it possible to do the following withot a for cycle? for n = 1:N, data(n).x = []; end
0 Kommentare
Antworten (1)
madhan ravi
am 30 Okt. 2018
Bearbeitet: madhan ravi
am 30 Okt. 2018
data(1:N).x = []; %edited after Stephens comment
2 Kommentare
Stephen23
am 30 Okt. 2018
The square brackets are not required and just hinder JIT optimization.
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!