Borrar filtros
Borrar filtros

How to change sign in a cell?

2 visualizaciones (últimos 30 días)
Xh Du
Xh Du el 9 de En. de 2017
Comentada: Xh Du el 10 de En. de 2017
Hi all:
I have a cell 'respPreStore' like this:
size(respPreStore)
ans =
1 2 5 2
each cell element is
respPreStore(:,:,1,1) =
[12x4 double] [12x4 double]
Now I simply want to change sign of each value in respPreStore, however if I do:
-respPreStore
Undefined function 'uminus' for input arguments of type 'cell'.
How can I change sign of each value in respPreStore?
Many thanks!

Respuesta aceptada

James Tursa
James Tursa el 9 de En. de 2017
Editada: James Tursa el 9 de En. de 2017
respPreStore = cellfun(@uminus,respPreStore,'uni',false);

Más respuestas (0)

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by