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 Comment

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)

Sign in to comment.

Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Asked:

on 16 Oct 2015

Edited:

on 17 Oct 2015

Community Treasure Hunt

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

Start Hunting!