multiply each column of a cell matrix that contains NaN by 8
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Dear all,
I have
A={
'NaN' 'NaN'
'2' '2'
'8' 'NaN'
'10' '10'
'56' '56'
'NaN' '56'
'36' '36'
'36' '36'
'NaN' 'NaN'
'56' '56'
'35' '35'
'23' 'NaN' }
and I want to multiplpy each column by say 8
thank you
0 comentarios
Respuesta aceptada
Andrei Bobrov
el 27 de Jul. de 2012
cellfun(@num2str,num2cell(str2double(A)*8),'un',0)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!