why Tsun=5780 and numE=1000?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1348294/image.png)
0 commentaires
Réponses (1)
Walter Roberson
le 7 Avr 2023
Tsun is the approximate temperature of the Sun, which is said to have a surface temperature of 5772 K
I would need more context to guess what numE is here.
4 commentaires
Walter Roberson
le 9 Avr 2023
numE is the number of different E values to plot over. You can change it to any integer that gives you enough points for a plot that is smooth enough for your purposes.
For your case I suspect you should be changing to
E = linspace(0.1, 4, numE);
If you want to plot for multiple Tsun then use a for loop, such as
for Tsun = [5000 5500 5780 6000 7000 10000]
end
Voir également
Catégories
En savoir plus sur 曲面图和网格图 dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!