making matrices with 1 and 0
1 回表示 (過去 30 日間)
古いコメントを表示
Hello,
Is there a way to make this matrice or can you only type every number by yourself
-1 0
-1 0
-1 0
-1 0
-1 0
-1 0
-1 0
-1 0
-1 0
-1 0
0 件のコメント
採用された回答
Ameer Hamza
2020 年 11 月 14 日
編集済み: Ameer Hamza
2020 年 11 月 14 日
You can use repmat()
x = [1 0]; % or [-1 0]
y = repmat(x, 10, 1)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Operators and Elementary Operations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!