Filter löschen
Filter löschen

question?please help me.

1 Ansicht (letzte 30 Tage)
mina
mina am 2 Mär. 2013
What does this sentence in matlab? kvalue=zeros(size(data,1));
data word is a database.

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 2 Mär. 2013
Bearbeitet: Azzi Abdelmalek am 2 Mär. 2013
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

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by