how to delcare a 2 dimensional array in matlab?

141 次查看(过去 30 天)
heyy i am trying to declare an 2D array in c++ it was easy like: array[i][j]= value i want to assign but in matlab how is it possible? i want to store two values against one field...
  1 个评论
Jan
Jan 2011-12-28
I've remove the "urgent" in the title and the tag. It does not increase the probability to get an answer. In contrary, it is counter-productive in this (ans other) forums.
What does this mean exactly: "I want to store two values against one field" ?

请先登录,再进行评论。

采纳的回答

Andrei Bobrov
Andrei Bobrov 2011-12-28
array(i,j) = value;
  1 个评论
Matt Tearle
Matt Tearle 2011-12-28
That. And if you want to preallocate space (which you should, if you have arrays that may grow significantly in loops):
array = zeros(m,n);

请先登录,再进行评论。

更多回答(2 个)

Jan
Jan 2011-12-28
This is a very basic question. This forum shall not be a replacement of reading the "Getting Started" chapters of the documentation.
If it is "urgent", it must be serious. If it is serious, there must be enough time to read the documentation.

Walter Roberson
Walter Roberson 2011-12-28
MATLAB does not have declarations, only assignments and references.

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by