How change only second number in a=ones(1,10)?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Risposta accettata
Dyuman Joshi
il 16 Gen 2024
Simply use indexing to change the element -
a = ones(1,10);
a(2) = 2
0 Commenti
Più risposte (1)
Jaime Abad Arredondo
il 16 Gen 2024
You should look at the syntax for array slicing. In matlab it's fairly easy. You would do something like:
a=ones(1,10);
disp(a)
a(2)=2;
disp(a)
Cheers!
0 Commenti
Vedere anche
Categorie
Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!