Skip to main content
1-Visitor
April 27, 2013
Solved

How to create a matrix from certain variables

  • April 27, 2013
  • 2 replies
  • 1812 views

Hello,

if I have set of variables such as:

a0=3 , a1=5 , a2=6 , a3= 9 , a4=2

I want to creat a matrix such as:

n= number of rows,

if I put n=3, the matrix will include a0,a1 and a2 only, the result will be like this:

M=[3

5

6]

if I put n=4, the matrix will include a0,a1,a2 and a3 only, the result will be like this:

M=[3

5

6

9]

Thank you in advance.

Best answer by Werner_E

or do you have one of those in mind?

subvectors1.png

2 replies

24-Ruby IV
April 27, 2013

May be so:

aM.png

Werner_E25-Diamond IAnswer
25-Diamond I
April 27, 2013

or do you have one of those in mind?

subvectors1.png

24-Ruby IV
April 27, 2013

Werner Exinger wrote:

or do you have one of those in mind?

subvectors1.png

I t is the diag function?

diag.png

25-Diamond I
April 27, 2013

Valery Ochkov wrote:

I t is the diag function?

As you can see I used the diag function in the definition of subM, but A_B seems to be after some kind of extraction/subvector kind of thing.

I'm not absolutely sure but from his description I think that my "subv" is what he is searching for.