在MATLAB中,可以使用solve
函數(shù)來解方程。solve
函數(shù)的一般形式為solve(equations, variables)
,其中equations
是方程的集合,variables
是方程中的未知數(shù)。
例如,要解方程x^2 - 3*x + 2 = 0
,可以使用如下代碼:
syms x
equation = x^2 - 3*x + 2 == 0;
sol = solve(equation, x);
輸出結(jié)果為:
sol =
1
2
這表示方程的解是x=1和x=2。