Error with Matlab Solve Function

6 次查看(过去 30 天)
I'm trying to solve for the critical points of the Lorenz Equations symbolic (i.e. in terms of ), but keep getting an error that I don't recognize at all when I try to run my code. I ran it on matlab online because I've never had an issue using solve before and it worked fine, but on my own computer (has every Matlab toolbox installed), I couldn't get it to work.
Here's my code:
clear all; close all; clc
syms sigma rho beta x y z; % Symbolic variables to solve system of ODEs
F1 = sigma*y - sigma*x; % First Lorenz ODE
F2 = rho*x - x*z - y; % Second Lorenz ODE
F3 = x*y - beta*z; % Third Lorenz ODE
F0 = [F1;F2;F3]; % Lorenz system of ODEs
critPoints = solve(F0 == 0, [x y z]); % Solves the system for the critical points
% The rest of the code prints it out
critPoints.x
ans = 
critPoints.y
ans = 
critPoints.z
ans = 
It also runs fine here, but for reference here's the exact error message I'm getting when trying to run it on my own computer:
Error using sym/solve (line 89)
Error using maplemex
Error, (in MTM:-solve) Vector(3, [0,0,0], datatype =
integer[1]) is not valid equation or expression
Error in Homework2 (line 14)
critPoints = solve(F0 == 0, [x y z])
I'm using Matlab2021a
Thanks!

采纳的回答

Walter Roberson
Walter Roberson 2021-9-28
You have Maple installed on your computer and you asked it to install the connection software between MATLAB and Maple. You are not using the Symbolic Toolbox, you are using Maple instead.
  2 个评论
Tyler Reohr
Tyler Reohr 2021-9-28
编辑:Tyler Reohr 2021-9-28
I do have Maple but don't think that I've used it more than one time. Do you know how to unlink the two? I thought it might be useful at somepoint but I don't think I'll ever actually use it.
*Edit*
I tried running the uninstaller, which worked to uninstall the maple toolbox, but now Matlab doesn't seem to recognize it's own symbolic toolbox. I get the following error:
Unrecognized function or variable 'syms'.
Error in Homework2 (line 9)
syms sigma rho beta x y z real;
Walter Roberson
Walter Roberson 2021-9-28
restoredefaultpath; rehash toolboxcache
If that works, then
savepath
If it does not work, then reinstall the Symbolic Toolbox.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Symbolic Math Toolbox 的更多信息

标签

产品


版本

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by