Problem with displaying format
조회 수: 1 (최근 30일)
이전 댓글 표시
I tired for displaying Value of f and conclusion but it seem not working. here is my code:
clc
clear all
syms x y
f(x,y)=x^3-3*x*y+y^3;
fx=diff(f,x);
fy=diff(f,y);
fxx=diff(fx,x);
fyy=diff(fy,y);
fxy=diff(fx,y);
D=(fxx*fyy)-(fxy)^2;
eqns=[fx==0,fy==0];
vars=[x y];
[sol_x sol_y]=solve(fx==0,fy==0,'Real',true);
conclusion={};
f_val=[];
for i=1:length(sol_x)
if( subs(D,{x,y},{sol_x(i),sol_y(i)})>0 && subs(fxx,{x,y},{sol_x(i),sol_y(i)})>0 )
conclusion{end+1}='min';
f_val(end+1)=f(sol_x(i),sol_y(i));
elseif(subs(D,{x,y},{sol_x(i),sol_y(i)})>0 && subs(fxx,{x,y},{sol_x(i),sol_y(i)})<0)
conclusion{end+1}='max';
f_val(end+1)=f(sol_x(i),sol_y(i));
elseif(subs(D,{x,y},{sol_x(i),sol_y(i)})<0)
conclusion{end+1}='saddle';
f_val(end+1)=f(sol_x(i),sol_y(i));
else
conclusion{end+1}='undetermine';
f_val(end+1)=f(sol_x(i),sol_y(i));
end
end
conclusion'
f_val'
result=[num2cell(f_val) conclusion']
error:
Error using horzcat Dimensions of matrices being concatenated are not consistent.
Any solution will be aprreciated.
Thanks in advance.th
댓글 수: 4
KALYAN ACHARJYA
2019년 10월 1일
When you use the following, then there is no error-
result=[num2cell(f_val) conclusion]
The answer provider on this Matlab Answer may not be from the same subject, it would be easy to answer, if you can provide us with the expected result?
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Formatting and Annotation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!