How Extract a value into a cell?
Mostrar comentarios más antiguos
If I have
>> A1
A1 =
[263x3 double]
>> A1{1}
ans =
1.0e-004 *
-0.0000 0 -0.0000
-0.0000 -0.0000 -0.0000
-0.0000 -0.0000 -0.0000
If I want to extract the differenze between the second and the first element of the first columns of A1 which is a cell how I can do?
Respuesta aceptada
Más respuestas (1)
Mischa Kim
el 31 de En. de 2014
Editada: Mischa Kim
el 31 de En. de 2014
0 votos
A1{1}(2,1)-A1{1}(1,1)
Categorías
Más información sobre Simscape Electrical 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!