how to do this

1 回表示 (過去 30 日間)
Nasir Qazi
Nasir Qazi 2012 年 3 月 8 日
if I have i = 1:12 , j= 1:12 and I want to get a table with A(i,j) , how I will do it
  2 件のコメント
Igor de Britto
Igor de Britto 2012 年 3 月 8 日
I don't get your question. Wich values do you want to populate this square matrix? Or do you want a lot of matrices with all the size combinations?
Nasir Qazi
Nasir Qazi 2012 年 3 月 8 日
I want to access each entry on excel sheet using Matlab , in Matlab I want to just enter A(i,j) and it should acess excel sheet for the values of i , j and return it back to Matlab , How can I do that

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

回答 (3 件)

Walter Roberson
Walter Roberson 2012 年 3 月 8 日
What do you mean by a "table" in this context? Something displayed to the command window? A uitable() ? An array with 3 columns, the first for i, the second for j, and the third for A(i,j) ?
When you speak of A(i,j) do you mean A(1:12,1:12), or do you mean A(i(1),j(1)) A(i(2),j(2)), A(i(3),i(3)) and so on? If you do then
A(subs2ind(size(A), i, j))
  5 件のコメント
Nasir Qazi
Nasir Qazi 2012 年 3 月 8 日
syms A
>> for i = 1 : 12
for j = 1 : 12
disp(A(i,j)); %the sample action taken on A(i,j)
end
end
A
??? Error using ==> mupadmex
Error in MuPAD command: Index exceeds matrix dimensions.
Error in ==> sym.sym>sym.subsref at 1366
B = mupadmex('mllib::subsref',A.s,inds{:});
Nasir Qazi
Nasir Qazi 2012 年 3 月 8 日
without syms A
??? Undefined function or method 'A' for input arguments of type 'double'.

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


Nasir Qazi
Nasir Qazi 2012 年 3 月 8 日
check this excel diagram http://imageshack.us/photo/my-images/141/newpicturezp.jpg/ I want to access every data set on the excel sheet .

Nasir Qazi
Nasir Qazi 2012 年 3 月 8 日
I want to access each entry on excel sheet using Matlab , in Matlab I want to just enter A(i,j) and it should acess excel sheet for the values of i , j and return it back to Matlab , How can I do that
  2 件のコメント
Aldin
Aldin 2012 年 3 月 8 日
You want to display excel data in uitable, right?
Nasir Qazi
Nasir Qazi 2012 年 3 月 8 日
yes

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

カテゴリ

Help Center および File ExchangeData Import from MATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by