Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
How can I make function value symbolic?
조회 수: 2 (최근 30일)
이전 댓글 표시
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
답변 (2개)
John D'Errico
2017년 10월 29일
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
Walter Roberson
2017년 10월 29일
Please do not ask the same question multiple times. The hamsters are paddling as fast as they can.
댓글 수: 0
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!