フィルターのクリア

Define a column-vector that contains the number from 10

1 回表示 (過去 30 日間)
ahmad alhjouj
ahmad alhjouj 2018 年 4 月 28 日
編集済み: Pavel 2018 年 4 月 28 日
2- Create a vector of size 1×250 of the following: <p>(a)- Vector of zeros. (b)- Vector of ones. (c)- Vector of Twos. (d)- Vector of 100 elements of ones and 150 elements of zeros.
%
% 3- Find the results of the following mathematical functions:
(a)-
  1 件のコメント
Rik
Rik 2018 年 4 月 28 日
Why don't you do your own homework? You can find guidelines for posting homework on this forum here.

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

回答 (1 件)

Pavel
Pavel 2018 年 4 月 28 日
編集済み: Pavel 2018 年 4 月 28 日
% (a)
zeros(250,1)
% (b)
ones(250,1)
% (c)
ones(250,1)*2
% (d)
[ones(100,1); zeros(150,1)]

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by