How to plot this graph with given values and equations.
显示 更早的评论
I'm struggling to plot this graph.
Here is the graph and the variables:

σ = 5.670367 × 10-8 kg s-3 K-4
and the equations are:

Can you show me the input which is needed for matlab to produce the graph.
Thanks for anyone suggestions and help.
I've had to plot these graphs for my maths projects and it's my first time using matlab.
1 个评论
Ingrid
2015-10-16
what have you tried so far?
you have to define Q first
Q = 1350:1410 ;
depending on the desired resolution (if it is not smooth) you might want to do this
Q = 1350:0.1:1410;
than you calculate T based on your equations, in function of Q but it seems that you are missing some values here (is a equal to aeq?, what are the values for sigma, a1,a2,c???)
than you can use the plot command
plot(Q,T)
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 MATLAB 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!