How to assign two identifiers to a vector of n values.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Fred
el 1 de Dic. de 2013
Comentada: Fred
el 1 de Dic. de 2013
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 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 1 de Dic. de 2013
Editada: Azzi Abdelmalek
el 1 de Dic. de 2013
V=[2 4;5 8] % V is a matrix not a vector
i=1;
j=2;
V(i,j)
Look at
doc array
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!