making matrices with 1 and 0

4 ビュー (過去 30 日間)
Jens Petit-jean
Jens Petit-jean 2020 年 11 月 14 日
コメント済み: Jens Petit-jean 2020 年 11 月 14 日
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

採用された回答

Ameer Hamza
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)
  1 件のコメント
Jens Petit-jean
Jens Petit-jean 2020 年 11 月 14 日
thanks

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by