mathematical equation in matlab

1 visualización (últimos 30 días)
Shehab Tarek
Shehab Tarek el 8 de Jun. de 2020
Comentada: madhan ravi el 8 de Jun. de 2020
how to write this equation in matlab
angle=tan(2*pi*0.25) but i want it in radian form
i know its equal 1/0

Respuesta aceptada

madhan ravi
madhan ravi el 8 de Jun. de 2020
Angle = tan(sym((2*pi*0.25)))

Más respuestas (1)

Walter Roberson
Walter Roberson el 8 de Jun. de 2020
angle = sinpi(2*0.25) / cospi(2*0.25)
That is, there is no tanpi() function but there is a sinpi() and cospi() that are intended to be more accurate for these kinds of boundary cases.
If you have the symbolic toolbox you could also
Pi = sym(pi); %specially recognized
angle = tan(2 * Pi * 0.25)
  1 comentario
madhan ravi
madhan ravi el 8 de Jun. de 2020
Also better is to not name a variable angle because there's an inbuilt function named angle(...)

Iniciar sesión para comentar.

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by