how to change the logical type matrix into other type

1 次查看(过去 30 天)
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,

采纳的回答

Stephen23
Stephen23 2017-10-19
编辑:Stephen23 2017-10-19
double(M)
where M is your logical matrix. For example:
>> M = [true,false,true]
M =
1 0 1
>> double(M)
ans =
1 0 1

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 数値型 的更多信息

Community Treasure Hunt

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

Start Hunting!