Index exceeds the number of array elements?
1 回表示 (過去 30 日間)
古いコメントを表示
vishnuvardhan naidu tanga
2020 年 5 月 27 日
コメント済み: Ameer Hamza
2020 年 5 月 27 日
Hello,
I am trying to extract data from Xsteam.I am trying to retrive data with respect to temperature. the code is as follows.
p = 10;
a = 1000;
b = 0.1;
rho_s = zeros(1,((a-1)/b));
L = length(rho_s);
for i = 1:L
T(i)= 1+b*i;
rho_s(i) =XSteam('rho_pT', p, T(i));
drho_s_dT = (rho_s(i+1)-rho_s(i))/(T(i+1)-T(i));
end
when i run this code I am getting an error as "Index exceeds the number of array elements". Can some one check and help me how can I do this.
6 件のコメント
John Marriott
2020 年 5 月 27 日
Ok - the columns of which variable outputs NaN?- it doesnt return NaN when I run it - are you using the XSteam function posted by Rik?
vishnuvardhan naidu tanga
2020 年 5 月 27 日
編集済み: vishnuvardhan naidu tanga
2020 年 5 月 27 日
採用された回答
Ameer Hamza
2020 年 5 月 27 日
It seems that you are trying to find a derivative of rho_s w.r.t. T, you can use gradient() function
p = 10;
a = 1000;
b = 0.1;
rho_s = zeros(1,((a-1)/b));
L = length(rho_s);
T = zeros(1, L);
for i = 1:L
T(i)= 1+b*i;
rho_s(i) =XSteam('rho_pT', p, T(i));
end
drho_s_dT = gradient(rho_s, T);
2 件のコメント
vishnuvardhan naidu tanga
2020 年 5 月 27 日
編集済み: vishnuvardhan naidu tanga
2020 年 5 月 27 日
Ameer Hamza
2020 年 5 月 27 日
This is probably caused by the thermodynamical equation implemented in XSteam() and not a MATLAB specific issue. You will need to understand the equations and the implementation of this function to see what might be going wrong. Also, you aren't passing variable 'p' in your code, which might be causing the issue.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!