automatic creating of array

2 ビュー (過去 30 日間)
john
john 2011 年 10 月 26 日
Hi,
I would like automatic create a matrix, or array. My program should work like this:
If I insert any number n, then it will create matrix, or array with elements i1;i2;i3;..in with size nx1.
For example: if n=2; then result is [i1;i2],
ans =
i1
i2
if n=4; then result is [i1;i2;i3;i4].
Please can you help me?
Thank you
  4 件のコメント
john
john 2011 年 10 月 26 日
Daniel,
{'i1','i2'} will by perfect. Do you know do this?
Matt Tearle,
I use usually command sym for create i1, i2.... in M-file. For me 1,2,3 and i1,i2 are the same, mean the same.
But Matlab help is written: sym Define symbolic objects
So I don't know what is 1,2,3,4, and i1,i2...
Jan
Jan 2011 年 10 月 27 日
@vansac: This is a public forum. Please post your questions here and not per email. Please take the time to read my profile.

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

採用された回答

Fangjun Jiang
Fangjun Jiang 2011 年 10 月 26 日
a=(1:n)'
or
a=cellstr(strcat('i',num2str((1:n)')))
  3 件のコメント
Fangjun Jiang
Fangjun Jiang 2011 年 10 月 26 日
Good point. Updated!
john
john 2011 年 10 月 26 日
Thank you so much Fangjun Jiang, good job :)

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by