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

조회 수: 1 (최근 30일)
Fred
Fred 2013년 12월 1일
댓글: Fred 2013년 12월 1일
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

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 12월 1일
편집: Azzi Abdelmalek 2013년 12월 1일
V=[2 4;5 8] % V is a matrix not a vector
i=1;
j=2;
V(i,j)
Look at
doc array
  댓글 수: 3
Azzi Abdelmalek
Azzi Abdelmalek 2013년 12월 1일
Use cell array
V={ [2;3;4] [5 8 9]; [2 0 1 4] 5}
Fred
Fred 2013년 12월 1일
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]

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by