Meaning of square bracket
Mostra commenti meno recenti
x(2,:)=[];
Risposte (1)
You probably need to do the basic MATLAB onramp tutorial, as this should be covered there. And it is free.
But this is how you can delete an element, or in this case the second row of the array x.
x = magic(4)
x(2,:) = []
Categorie
Scopri di più su Mathematics and Optimization in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!