Generate an array within three loops

1 回表示 (過去 30 日間)
melad atunse
melad atunse 2020 年 1 月 16 日
コメント済み: David Hill 2020 年 1 月 16 日
82158807_848872355563229_1562809247484346368_n.png
  1 件のコメント
melad atunse
melad atunse 2020 年 1 月 16 日
Enter values c1 into an array

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

回答 (1 件)

David Hill
David Hill 2020 年 1 月 16 日
count=1;
for n=.1:.1:.5
for m=.1:.1:.5
for k=1:5
c(count)=94*2.4^n*.4^m;%1^k is always 1, so it doesn't matter
count=count+1
end
end
end
  2 件のコメント
melad atunse
melad atunse 2020 年 1 月 16 日
First, thank you very much for your interest
Secondly I have other data in which the values of A (1,4) are more and less than 1, for example 0.5 or 1.5 then what will I do
David Hill
David Hill 2020 年 1 月 16 日
count=1;
a=[94 2.4 .4 1];
for n=.1:.1:.5
for m=.1:.1:.5
for k=.1:.1:5
c(count)=A(1,1)*A(1,2)^n*A(1,3)^m*A(1,4)^k;
count=count+1
end
end
end

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

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by