Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在matlab中求解一个非线性方程组,使得解是正的。我可以在 matlab 中指定我想要未知变量的正解吗?如何?
是的,您可以使用以下符号定义变量:
syms x y positive
并且这些变量被限制为正数。定义变量约束后,请参阅fsolve以了解如何找到解决方案。