Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Why is my function not working?

조회 수: 1 (최근 30일)
Michael Vaughan
Michael Vaughan 2020년 9월 24일
마감: MATLAB Answer Bot 2021년 8월 20일
I wrote this in a coding window:
function z = z(x)
z = (v^(x/2)-v^(-x/2))/(t^(x/2)-t^(-x/2));
end
then I saved it, went to the command prompt and typed z(3). I want my result to be:
(v^(3/2)-v^(-3/2))/(t^(3/2)-t^(-3/2))
But instead i get:
Error in z (line 2)
z = (v^(x/2)-v^(-x/2))/(t^(x/2)-t^(-x/2));
What is going wrong here? Thanks!

답변 (2개)

madhan ravi
madhan ravi 2020년 9월 24일
편집: madhan ravi 2020년 9월 24일
syms v t % in the first line of function

Ameer Hamza
Ameer Hamza 2020년 9월 24일
Because you haven't defined the values of v and t inside the function. Change to something like this
function z = z(x)
v = 1;
t = 2;
z = (v^(x/2)-v^(-x/2))/(t^(x/2)-t^(-x/2));
end

태그

Community Treasure Hunt

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

Start Hunting!

Translated by