Effacer les filtres
Effacer les filtres

How to wrote theta as a matlab code

22 vues (au cours des 30 derniers jours)
Azriel Faiz Abu Fadzil
Azriel Faiz Abu Fadzil le 19 Oct 2017
How to wrote theta as matlab code
for example 2sintheta

Réponse acceptée

Birdman
Birdman le 19 Oct 2017
syms theta
2*sin(theta)
Then by substituting theta with any numeric variable, you can calculate 2*sin(theta)
  3 commentaires
Courtney Jacks
Courtney Jacks le 20 Fév 2018
When I input this in matlab it does not run.
Jan
Jan le 20 Fév 2018
@Courtney: "It does not run" does not allow to help you. Please post, what happens instead - perhaps an error message because you do not have the Symbolic Toolbox?

Connectez-vous pour commenter.

Plus de réponses (2)

James Tursa
James Tursa le 19 Oct 2017
Modifié(e) : James Tursa le 19 Oct 2017
E.g.,
theta = pi/4;
result = 2*sin(theta); % <-- if theta is in radians
theta = 45;
result = 2*sind(theta); % <-- if theta is in degrees

RAVI Kumar
RAVI Kumar le 26 Jan 2021
Thetha=pi/4

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by