Problem with code. Error using vertcat

조회 수: 1 (최근 30일)
Claire
Claire 2015년 3월 12일
댓글: Star Strider 2015년 3월 12일
Hello, I am having difficulty with a code. Every time I run it, it tells me that I have an error using vertcat. I'm not quite sure how to fix this. Any help is greatly appreciated. The code is provided below:
function a = QuadFit( x,y )
colx=size(x);
coly=size(y);
m=colx;
n=coly;
if m~=n
error('Size of x and y must be equal');
end
%x values summation
sumx=0;
for i=1:m
sumx=sumx+x(i);
end
%x^2 values summation
sumx_2=0;
for i=1:m
sumx_2=sumx_2+(x(i)^2);
end
%x^3 values summation
sumx_3=0;
for i=1:m
sumx_3=sumx_3+(x(i)^3);
end
%x^4 values summation
sumx_4=0;
for i=1:m;
sumx_4=sumx_4+(x(i)^4);
end
%y values summation
sumy=0;
for i=1:m
sumy=sumy+y(i);
end
%x*y values summation
sumxy=0;
for i=1:m
sumxy=sumxy+(x(i)*y(i));
end
%(x^2)*y values summation
sumx_2y=0;
for i=1:m
sumx_2y=sumx_2y+((x(i)^2)*y(i));
end
a=[sumx_2 sumx_3 sumx_4 sumx_2y;sumx sumx_2 sumx_3 sumxy;n sumx sumx_2 sumy];
a=rref(a);
a1=a(1,4);
a2=a(2,4);
a3=a(3,4);
end
The error is occurring is this line:
a=[sumx_2 sumx_3 sumx_4 sumx_2y;sumx sumx_2 sumx_3 sumxy;n sumx sumx_2 sumy];

채택된 답변

Star Strider
Star Strider 2015년 3월 12일
If you want the column size only of ‘x’ and ‘y’, you have to be specific with the size function.
Change the ‘colx’ and ‘coly’ assignments to:
colx=size(x,2);
coly=size(y,2);
and it works!
  댓글 수: 2
Claire
Claire 2015년 3월 12일
Thank you so much!
Star Strider
Star Strider 2015년 3월 12일
My pleasure!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Mathematics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by