What type of data is this isCategoricalPrd = [false, false, false, false, false];? the members of this matrix are not character nor string.
1 回表示 (過去 30 日間)
古いコメントを表示
Zeynab Mousavikhamene
2020 年 3 月 17 日
コメント済み: Walter Roberson
2020 年 3 月 17 日
Here is the matrix
isCategoricalPrd = [false, false, false, false, false];
I want to know the type of matrix members and how to make this matrix systematically like in neumerical matrices "zeros" or "ones" are used so that I can make them with any size.
0 件のコメント
採用された回答
Walter Roberson
2020 年 3 月 17 日
false and true are datatype named logical
true(1,5)
false(1,5)
ones(1,5,'logical')
zeros(1,5,'logical')
logical(ones(1,5))
logical(zeros(1,5))
4 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Repeated Measures and MANOVA についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!