Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

Why is my function not working?

1 visualización (últimos 30 días)
Michael Vaughan
Michael Vaughan el 24 de Sept. de 2020
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
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!

Respuestas (2)

madhan ravi
madhan ravi el 24 de Sept. de 2020
Editada: madhan ravi el 24 de Sept. de 2020
syms v t % in the first line of function

Ameer Hamza
Ameer Hamza el 24 de Sept. de 2020
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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by