フィルターのクリア

Why should I use the zeros function?

21 ビュー (過去 30 日間)
MUNKHBOLOR BAIGALI
MUNKHBOLOR BAIGALI 2020 年 10 月 22 日
編集済み: Stephen23 2020 年 10 月 22 日
Hello, I don't understand. Why should I use the zeros function?
Eb=zeros(1,8640);
time1=zeros(1,8640);
diesel=zeros(1,8640);
Edump=zeros(1,8640);
Edch=zeros(1,8640);
Ech=zeros(1,8640);
In this case, I don't understand zeros(1,8640). please explain to me
  2 件のコメント
Stephen23
Stephen23 2020 年 10 月 22 日
編集済み: Stephen23 2020 年 10 月 22 日
"Why should I use the zeros function?"
  1. to avoid bugs by ensuring that a variable has the correct data type (often overlooked in answers).
  2. to improve efficiency by preallocating an array to the required size:
MUNKHBOLOR BAIGALI
MUNKHBOLOR BAIGALI 2020 年 10 月 22 日
I see. Thank you so much

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

回答 (2 件)

Stephan
Stephan 2020 年 10 月 22 日
編集済み: Stephan 2020 年 10 月 22 日
  1 件のコメント
MUNKHBOLOR BAIGALI
MUNKHBOLOR BAIGALI 2020 年 10 月 22 日
thank you so much

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


Durganshu
Durganshu 2020 年 10 月 22 日
Zeros(m,n) will create a matrix of dimensions m x n with all the elements as 0. This matrix along with the ones(m,n) is often used to pre-allocate a matrix so as to save memory and time of processing.
Read the full documentation here:
Hope that helps!
  1 件のコメント
MUNKHBOLOR BAIGALI
MUNKHBOLOR BAIGALI 2020 年 10 月 22 日
thank you so much

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

カテゴリ

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

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by