Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
How can I make function value symbolic?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
function t = turev(x,y)
.
.
.
end
x = x^2+y^2, y = 1
How can I make the function "x ^ 2 + y ^ 2" symbolic when I enter the values?
0 Kommentare
Antworten (2)
John D'Errico
am 29 Okt. 2017
If either of x or y are already symbolic, then any computations done on them will also be symbolic.
You can create a symbolic constant or variable using sym or syms, depending on exactly how you want to do it.
help sym
0 Kommentare
Walter Roberson
am 29 Okt. 2017
Please do not ask the same question multiple times. The hamsters are paddling as fast as they can.
0 Kommentare
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!