フィルターのクリア

question?please help me.

1 回表示 (過去 30 日間)
mina
mina 2013 年 3 月 2 日
What does this sentence in matlab? kvalue=zeros(size(data,1));
data word is a database.

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 3 月 2 日
編集済み: Azzi Abdelmalek 2013 年 3 月 2 日
Example
data=[1 2 3;4 5 6]
n=size(data,1) % is number of rows of data
size(data,2) % is number of columns of data
zeros(n) %will create a nxn array of zeros

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by