"solve" Function
Ältere Kommentare anzeigen
I'm trying to use the "solve" function to find a variable, but the other variables in the equation are input as opposed to defined. How do I fix this? Here's to illustrate what I'm trying to do using a simplified equation:
x=input('x = ')
y=input('y = ')
z=solve('x+y=z',z)
2 Kommentare
Tebikew Alemu
am 27 Dez. 2021
How i can write a matlab cod for a funtion
Walter Roberson
am 27 Dez. 2021
Bearbeitet: Walter Roberson
am 27 Dez. 2021
Example:
syms x
y(x) = sin(x) - x^3/27 %this is the code for the function
fplot(y, [-2*pi 2*pi])
Akzeptierte Antwort
Weitere Antworten (2)
Andrew Newell
am 7 Mär. 2011
Here is one way:
x=sym(input('x = '))
y=sym(input('y = '))
syms z
z=solve(z-x-y,z)
5 Kommentare
Patrick Star
am 8 Mär. 2011
Walter Roberson
am 8 Mär. 2011
Do you have the symbolic toolbox? What happens if you try
sym('x')
and
sym('1')
?
You do not really need the sym() calls for x and y:
x = input('x = ');
y = input('y = ');
syms z
z = solve(z-x-y,z);
Patrick Star
am 8 Mär. 2011
Andrew Newell
am 8 Mär. 2011
Oh. I assumed that you were actually using the command "solve", which is in the Symbolic Toolbox.
Walter Roberson
am 8 Mär. 2011
Please check to see whether you are licensed for the symbolic toolbox but perhaps have just not installed it. If you happen to be using the Student Edition than this could be the difficulty.
solve() is part of the symbolic toolbox and requires that toolbox be installed and licensed.
Andrew Newell
am 8 Mär. 2011
Is this what you're after?
x=input('x = ')
y=input('y = ')
z = x+y
1 Kommentar
Patrick Star
am 8 Mär. 2011
Kategorien
Mehr zu Assumptions finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
