Creating a logical array
882 次查看(过去 30 天)
显示 更早的评论
hi guys,
How can i create a logical array [1 0 1 0 1 1 ....] 1-by-15 it will go into gamultiobj with bitstring so the the arranging is not important.
0 个评论
采纳的回答
Azzi Abdelmalek
2012-8-4
x=boolean([0 1 0 1 0 1 0 1])
1 个评论
Image Analyst
2023-1-16
Note: the boolean function is only in the Stateflow toolbox which is kind of rare. See the warning in the help:
更多回答(2 个)
Image Analyst
2012-8-4
编辑:Image Analyst
2023-1-16
To get a random placement of trues and falses, use randi
logicalArray = logical(randi(2, [1 15]) - 1)
Otherwise you can put in exactly what you want:
logicalArray = logical([1, 0, 1, 0, 1, 1])
0 个评论
Captain Karnage
2023-1-16
What's the ultimate goal? If you need to initialize a logical array, you can use true or false:
either
logicalArray = false(1,15);
-OR-
logicalArray = true(1,15);
will initialize a 1x15 logical array that you can then set the individual values for, then if you set any element, like
logicalArray(5) = 1;
It will be of type logical rather than double.
If you already know your entire array, you can also do it manually with true and false:
logicalArray = [ true false true false true true true false true false true true true false true ];
will output
1 x 15 logical array
[ 1 0 1 0 1 1 1 0 1 0 1 1 1 0 1]
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!