필터 지우기
필터 지우기

How to define my N by 2 matrix of values to x and y

조회 수: 7 (최근 30일)
Robin Li
Robin Li 2019년 4월 29일
편집: Robin Li 2019년 4월 29일
I have a N by 2 matrix Q consists of my column value of indepedent variables (N by 1 column vector) and dependent variables (N by 1 column vector), and I want to define my indepedent variables as x and dependent variables y, then I will be able to do my regression over two variables.
Or I was thinking maybe we don't have to define the variables. I have several matrices, and what codes should I write to let the program knows that I want to regress the second volumn over first volumn in that Q matrix? For example, p2=polyfit(Q(column1),Q(column2),2) to get the quadratic polynomial fitting?
How could I do that?
This is a simple question, but I just get started with MATLAB. Thank you for your helps!

채택된 답변

KSSV
KSSV 2019년 4월 29일
x = N(:,1) ;
y = N(:,2) ;

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by