Sine Function I'm trying to Plot won't show up

4 vues (au cours des 30 derniers jours)
Krishan Bansal
Krishan Bansal le 22 Sep 2022
Commenté : Krishan Bansal le 22 Sep 2022
I am trying to plot the sine based function with various constants. However, when I try to plot them nothing shows up in the figure window, and the variables in the workspace only evaluate to one number rather than the whole range of phi. Not sure what I'm doing wrong here.

Réponse acceptée

Stephen23
Stephen23 le 22 Sep 2022
Modifié(e) : Stephen23 le 22 Sep 2022
"Not sure what I'm doing wrong here."
You need to use element-wise division, not matrix division:
phi = 0:0.1:6*pi;
I2 = sin(phi).^2 ./ sin(phi/2).^2;
% ^^
plot(I2)
Tip: if you are not doing linear algebra you probably should be using array operations:
  1 commentaire
Krishan Bansal
Krishan Bansal le 22 Sep 2022
Thanks! I had a feeling it had something to do with that! I always forget to do .*, I'm surprised I forgot here because I specifically did element wise squaring.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by