How to assign two identifiers to a vector of n values.
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi, I need to assign two identifiers to a vector of n values like V i,j in a way that V is not a cell but it is a vector of n values. How can I do that
0 commentaires
Réponse acceptée
Azzi Abdelmalek
le 1 Déc 2013
Modifié(e) : Azzi Abdelmalek
le 1 Déc 2013
V=[2 4;5 8] % V is a matrix not a vector
i=1;
j=2;
V(i,j)
Look at
doc array
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!