creat matrix with specific row element

Create a matrix of 100 rows and 100 columns. The odd columns should contain values 2, and the even columns, values 0

回答 (1 件)

KSSV
KSSV 2020 年 10 月 16 日

0 投票

iwant = zeros(100) ;
iwant(:,1:2:end) = 2 ;

カテゴリ

製品

タグ

質問済み:

2020 年 10 月 16 日

回答済み:

2020 年 10 月 16 日

Community Treasure Hunt

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

Start Hunting!

Translated by