ContentsIndexReferenceHome
PreviousUpNext
LUTAtm
MATLAB
ModelData = LUTAtm(h,varname,fileName)
Description

General LUT function for extrapolating atmospheric data. The specified Matlab data file must contain a vector Altitude and a vector for the desired data.

Parameters
Parameters 
Description 
h [vector] 
Altitude (m) 
varname [string] 
Name of vector in fileName to interpolate into 
fileName [string] 
Name of Matlab data file containing the data for interpolation. 
Return Values
Return Values 
Description 
ModelData [vector] 
Model data, the result of the interpolation 
Examples

>> Altitude = linspace(0,10e3,500)'; 

>> totalAbsorption = MODFAS(Altitude,'A',1e-6,'MidLatSum'); 

>> save('MyExtinctionData.mat','Altitude','totalAbsorption') 

>> Model = LUTAtm(1000,'totalAbsorption','MyExtinctionData.mat') 

  • Interpolates vectors Altitude and totalAbsorption found in the specified file.
 

See Also
Group
Made with Doc-O-Matic.
Copyright (c) 2009. All rights reserved.
What do you think about this topic? Send feedback!