Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

How do I plot this E= (|I|^2)/8π​^2[costhet​a-costheta​^2]/(2).

1 Ansicht (letzte 30 Tage)
Adefola Alowolodu
Adefola Alowolodu am 8 Jul. 2017
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
How do I plot this E= (|I|^2)/8π^2[costheta-costheta^2]/(2).
  1 Kommentar
John D'Errico
John D'Errico am 8 Jul. 2017
What have you tried? IF nothing then why not? It appears, given that you are not even using valid MATLAB notation, that you have not even read the getting started tutorials. So why not try reading the manual FIRST? You might learn something. At least you would learn enough to create a fairly simple plot.

Antworten (1)

Joshua
Joshua am 8 Jul. 2017
Bearbeitet: Joshua am 8 Jul. 2017
I was a little confused by what belonged in the denominator and numerator, along with what "I" is (I took it to be the imaginary number). However, I think you want something like this
theta=linspace(-2*pi,2*pi,100);
E=-1*(cos(theta)-cos(theta).^2)/(2*8*pi^2);
plot(theta,E)
xlabel('\theta')
ylabel('E')

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by