3x-y+4=0 how to solve this equation in matlab
3 次查看(过去 30 天)
显示 更早的评论
3x-y+4=0
1 个评论
回答(1 个)
Sam Chak
2022-10-8
Hi @Adam
The given equation
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1149400/image.png)
can be rewritten in this familiar line equation form
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1149405/image.png)
You can substitute any real value into x and find y
If there is another curve that intersects with the line, then you can find a unique solution.
If there are two intersections, then there are two solutions.
x = -4:0.1:4;
y = 3*x + 4;
plot(x, y), grid on
xlabel('x'), ylabel('y')
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Mathematics and Optimization 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!