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 中做“主题”的函数。我不确定它是否被称为主题或其他名称。让我解释一下功能。
假设我有这样的表达。
syms x, y,z; y = 2*x^2 - 2*z + 1;
我想要一个函数来获取x一侧和其他变量到另一侧。IE。
x
x = ((y + 2*z - 1)/ 2 )^0.5
是否有任何功能或内置 Matlab 命令来执行此操作?
您是否看过 MATLAB 数学工具箱的文档?它就在那里。功能是“解决”。在此处阅读文档:解决文档。