how to write in matlab?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
flag(j)<------- 1, t(i)<------- j.
which sign is used instead of arrow(<--------) between them.
2 Commenti
Risposte (2)
Shwetank Shrey
il 21 Giu 2019
If you are trying to assign flag(j) and t(i) values, then you should use :
flag(j) = 1;
t(i) = j;
Please check documentation or existing Matlab answers before asking your query.
0 Commenti
Vedere anche
Categorie
Scopri di più su Matrix Indexing 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!