Help with matlab, dimensions of matrices being concatenated are not consistent, why?

I keep getting this error, Dimensions of matrices being concatenated are not consistent.
Here's my code:
x = [0.00, 100.00, 200.00];
y1 = [100.00, 138.50, 175.83];
y2 = [(175.83/200) * x];
y3 = [(y1) / x];
[hAx,hLine1,hLine2] = plotyy(x,y1,[x',x'],[y2',y3']);

 채택된 답변

Cedric
Cedric 2015년 9월 4일
편집: Cedric 2015년 9월 4일
Seeing what you are trying to do in the call to plot, I suspect that you didn't want to solve a linear system when you defined y3, but wanted instead an element-wise division?
y3 = y1 ./ x ;

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

질문:

2015년 9월 4일

편집:

2015년 9월 4일

Community Treasure Hunt

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

Start Hunting!

Translated by