Obtain initial data type from cell array if I stored functions in the cell array
Mostrar comentarios más antiguos

I want to calculate specific heat of 5 components at a given temperature. If I store the five functions in a cell array. If I try to call e.g. Cp(1), it returns a 1*1 cell containing my function, but not the function itself that I want to use. Can someone help me with this issue. In this function I want to return a vector containing specific heat values. Thank you!
Respuesta aceptada
Más respuestas (1)
Matt Dickson
el 5 de Jun. de 2018
To get the value out of the cell by index, use curly brackets to index. For example:
foo = {'bar' 'baz'};
a = foo(1) % a = 1x1 cell
b = foo{1} % b = 'bar'
1 comentario
Zicheng Cai
el 5 de Jun. de 2018
Categorías
Más información sobre Chemistry 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!