how to change the logical type matrix into other type

3 visualizaciones (últimos 30 días)
SHUNSUKE YAMANAKA
SHUNSUKE YAMANAKA el 19 de Oct. de 2017
Comentada: Stephen23 el 19 de Oct. de 2017
Dear Sir or Madam,
I would like to change the logical type matrix into other type ( double , boolean...). But , I can't change it. Otherwise , I tried by using typecast command.
I'm pleased if you let me know.
Sincerely,

Respuesta aceptada

Stephen23
Stephen23 el 19 de Oct. de 2017
Editada: Stephen23 el 19 de Oct. de 2017
double(M)
where M is your logical matrix. For example:
>> M = [true,false,true]
M =
1 0 1
>> double(M)
ans =
1 0 1

Más respuestas (0)

Categorías

Más información sobre 数値型 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!