Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Error using horzcat Dimensions of matrices being concatenated are not consistent.
조회 수: 1 (최근 30일)
이전 댓글 표시
Error using horzcat
Dimensions of matrices being concatenated are not consistent.
Error in q1_fpi_150115 (line 71)
disp([' iteration = ' num2str(count) ' xf=' num2str(xf) ' yi=' num2str(yf) ' ex=' num2str(ex) ' ey=' num2str(ey) ])
The code is :
xf= (-(a1*xi.^2 + b1*yi.^2 + 2*f1*y +c1 )/(2*h1+ 2*g1)) ;
yf= (-(a2*xf.^2 + b2*yi.^2 + 2*g2*xf +c2 )/(2*h2+ 2*g2)) ;
disp([' iteration = ' num2str(count) ' xf=' num2str(xf) ' yi=' num2str(yf) ' ex=' num2str(ex) ' ey=' num2str(ey) ])
댓글 수: 0
답변 (1개)
Walter Roberson
2017년 6월 9일
One of the variables count or xf or yf or ex or ey has multiple rows. You did not post enough information for us to determine which one.
댓글 수: 1
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!