How can ask user to enter values of x and n?

3 visualizaciones (últimos 30 días)
Emre Can Usengul
Emre Can Usengul el 13 de Abr. de 2020
Editada: Adam Danz el 14 de Abr. de 2020
function y = Tsin(x,n)
%Tsin calculates the sin using Taylor formula.
%Input arguments.
%x the angle in degrees, n number of terms.
z=x*pi/180;
y=0;
for k=0:n-1
y=y+(-1)^k*z^(2*k+1)/factorial(2*k+1);
end
How can I ask user to enter values of x and n?
If ı use input function, where ı will use this function?
Thank you..
  1 comentario
Adam Danz
Adam Danz el 14 de Abr. de 2020
Editada: Adam Danz el 14 de Abr. de 2020
Emre Can Usengul, This is the 3rd time you're asking the same or similar question. The first one was deleted and the second is below. If you need more help, continue the discussion within your question instead of posting the question again.

Iniciar sesión para comentar.

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 13 de Abr. de 2020
Editada: Ameer Hamza el 13 de Abr. de 2020
See input() function.
x = input('Input value of x :');
n = input('Input number of series terms (n) :');
y = Tsin(x,n)
  4 comentarios
Emre Can Usengul
Emre Can Usengul el 13 de Abr. de 2020
So if change the name of folder Tsin.m
Then run
Unrecognized function or variable 'x'.
Ameer Hamza
Ameer Hamza el 14 de Abr. de 2020
Emre, You first need to create the function in a file like this.
Tsin.m:
function y = Tsin(x,n)
%Tsin calculates the sin using Taylor formula.
%Input arguments.
%x the angle in degrees, n number of terms.
z=x*pi/180;
y=0;
for k=0:n-1
y=y+(-1)^k*z^(2*k+1)/factorial(2*k+1);
end
end
save this file and close it.
Now run the following lines in command window
x = input('Input value of x :');
n = input('Input number of series terms (n) :');
y = Tsin(x,n)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Mathematics en Help Center y File Exchange.

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by