Why does this plot not work? Thank's for every help!
이전 댓글 표시
x = linspace(0.5,8.7,870)
syms y;
solve(4000 == (y/6.5)*(8.7-x),y)
plot(x,y)
답변 (1개)
Roger Stafford
2016년 12월 24일
It would be better to first solve the equation for y symbolically and then produce a vector of y values:
x = linspace(0.5,8.7,870);
y = 6.5*4000./((8.7-x); % <-- The symbolic solution
plot(x,y)
카테고리
도움말 센터 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!