Using Matlab with Antelope
Mostrar comentarios más antiguos
I'm currently using parameter files, and i'm running into a problem while attempting to extract a matrix from a parameter file.
I'm using
variable_1 = pfget_tbl(pf,'variable_in_pf_file')
The variable in the pf file is defined as such
variable_in_pf_life &Tbl{
50
75
}
My method works, except the output with I do
disp(variable_1)
is
lonlim =
[-180]
[-120]
instead of the desired
-180 -120
Is there any way to make this change?
1 comentario
Neil Bhattacharjee
el 29 de Jun. de 2016
Respuestas (1)
Walter Roberson
el 29 de Jun. de 2016
cell2mat(lonlim)
1 comentario
Neil Bhattacharjee
el 29 de Jun. de 2016
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!