フィルターのクリア

how to make a variable as equal input over 30 sections

1 回表示 (過去 30 日間)
segun
segun 2014 年 4 月 21 日
回答済み: Azzi Abdelmalek 2014 年 4 月 21 日
f = 100;
z = 0.5 ;% how to make it as equal inputs over 30 sections
b = 2; c = 4;
Y = f*b*c*z;
disp(Y);

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2014 年 4 月 21 日
f = 100;
z = 0.5*ones(1,30)
b = 2;
c = 4;
Y = f*b*c*z;
disp(Y);

その他の回答 (1 件)

Mischa Kim
Mischa Kim 2014 年 4 月 21 日
Segun, do you mean
z = linspace(0,0.5,30)

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by