필터 지우기
필터 지우기

I have a problem with solve command

조회 수: 2 (최근 30일)
Sharafat Ali
Sharafat Ali 2023년 1월 24일
댓글: Sharafat Ali 2023년 1월 24일
>> syms x
>> syms y
>> syms z
>> [x,y]=solve('3*x-y=2','x+y=1')
Check for incorrect argument data type or missing argument in call to function 'solve'.
>> [x y]=solve('3*x-y=2','x+y=1')
Check for incorrect argument data type or missing argument in call to function 'solve'.

채택된 답변

Kevin Holly
Kevin Holly 2023년 1월 24일
The format you are using is no longer supported. Please see documentation for solve.
syms x
syms y
syms z
[x,y]=solve(3.*x-y==2,x+y==1)
x = 
y = 

추가 답변 (1개)

Torsten
Torsten 2023년 1월 24일
syms x y
[x y] = solve([3*x-y==2,x+y==1])
x = 
y = 

카테고리

Help CenterFile Exchange에서 Formula Manipulation and Simplification에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by