フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

need syntax

1 回表示 (過去 30 日間)
shriya
shriya 2012 年 3 月 19 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
need syntax for zero padding

回答 (1 件)

Wayne King
Wayne King 2012 年 3 月 19 日
One way
x = ones(10,1);
x = [x ; zeros(10,1)];
Another way:
x = ones(10,1);
y = zeros(10,1);
x = vertcat(x,y);

この質問は閉じられています。

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by