필터 지우기
필터 지우기

Inserting a column vector as a column in a new matrix.

조회 수: 2 (최근 30일)
Swasti Khuntia
Swasti Khuntia 2012년 10월 17일
Hello,
I have a column vector (say X). And I want to make that vector as a column in my new matrix, i.e., the first column is only 1s, second column is X and third column is X^2.
Any idea as how to do it?
Thanks !!!

채택된 답변

Sachin Ganjare
Sachin Ganjare 2012년 10월 17일
new_matrix = [1s_col X X^2]

추가 답변 (3개)

Matt J
Matt J 2012년 10월 17일
I suspect that this is what you really want:
vander(X).'
or
bsxfun(@power,X(:),[0,1,2]);

Swasti Khuntia
Swasti Khuntia 2012년 10월 17일
Thanks a lot Sachin and Matt !! Both of them works out for me. Since Sachin answered it first, I had to accept it :)

Matt J
Matt J 2012년 10월 17일
I'm also going to hazard a guess that the matrix you're trying to create is meant so that you can fit a quadratic polynomial.
If so, you should probably be using POLYFIT instead, which is more stable.

카테고리

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