How to assign two identifiers to a vector of n values.

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

 Respuesta aceptada

Azzi Abdelmalek
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

3 comentarios

Fred
Fred el 1 de Dic. de 2013
Sorry If my question was not clear enough. I wand to define a matrix which each cell is a matrix of size (n,1) So for example V(1,2) returns a matrix of size (n,1)
Use cell array
V={ [2;3;4] [5 8 9]; [2 0 1 4] 5}
Thank you, How can I call the V(2,1) because when I type it it just returns
[1x4 double]
How can I get directly
[2 0 1 4]

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Productos

Etiquetas

Preguntada:

el 1 de Dic. de 2013

Comentada:

el 1 de Dic. de 2013

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by