help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: constructing a matrix from a vector


From: ishi soichi
Subject: Re: constructing a matrix from a vector
Date: Wed, 19 Oct 2011 13:22:21 +0900

thanks! it worked!

soichi

2011年10月19日13:08 <address@hidden>:
what about repmat?
 
x = [1,2,3];
 
y = repmat(x,10,1);
 

From: address@hidden [mailto:address@hidden] On Behalf Of ishi soichi
Sent: Wednesday, October 19, 2011 1:03 PM
To: address@hidden
Subject: constructing a matrix from a vector

hi. I have a question about matrices.

say, we have a vector,

(1 2 3)

Can we construct a matrix like


1 2 3
1 2 3
1 2 3
1 2 3

?

certainly it's possible if I use normal loop algorithms. But I rather use Octave capability to manipulate matrices.

soichi

_______________________________________________
Help-octave mailing list
address@hidden
https://mailman.cae.wisc.edu/listinfo/help-octave



reply via email to

[Prev in Thread] Current Thread [Next in Thread]