How do I create a unit vector with multiple rows

I want to create a unit vector with multiple rows, but only one input line.
For example I want an output like this: [14 15 16; 12 13 14].
I tried to put input of [14;12]:[1;1]:[16;14] and just got the output of [14,15,16] instead of mutiple rows.
All the vectors will be the same length so that won't be an issue.

 채택된 답변

madhan ravi
madhan ravi 2019년 4월 17일

1 개 추천

[14:16;12:14]

댓글 수: 3

This works for a 2 row array, but I was going increase the number of rows. So I need something that would work regardless of the number of rows.
For example one output could be:
[14 15 16; 2 3 4; 48 49 50; 21 22 23]
a=[14;2;48;21]
b=[16;4;50;23]
cell2mat(arrayfun(@(x,y)x:y,a,b,'un',0))
Perfect. Thank you

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Logical에 대해 자세히 알아보기

질문:

2019년 4월 17일

댓글:

2019년 4월 17일

Community Treasure Hunt

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

Start Hunting!

Translated by