using ideal gas law (v = RT/P), develop a matrix that contains the specific volume f or an ideal gas for which the rows indicate values of T from 200K to 1000K in increments of 200K, and the colunms indicate the values of p from 1 atm to 5 atm...

5 views (last 30 days)
...in increments of 1 atm.
R = .08206; T = [200:200:1000]; p = [1:5]'; v = (R.*T)/p
What is wrong

Answers (1)

Star Strider
Star Strider on 21 Jun 2016
Hint : See the meshgrid function.

Categories

Find more on Programming in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!