フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

how can i set for statement into connected two files

1 回表示 (過去 30 日間)
muhammad ismat
muhammad ismat 2017 年 2 月 16 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
if i have two function in (separated files), first function contain two for statement as
{ for p= 1: 100}
{ for r =1: 100}
and second function contain
{for i = 1: 100} when i run above program i take the result of first function and use it in second function. i want to take initial value of "p" and initial value of "r" and run second function 100 times then initial value of p and second value of r and run second function 100 times and so on. in this case what should i do?

回答 (1 件)

KSSV
KSSV 2017 年 2 月 16 日
N = 3 ; %100
for p = 1:N
for q = 1:N
[p,q]
%%call your first function
for r = 1:N
[p,q,r]
% use p,q in second function
end
end
end
Note that the above can be vectorised depending on what your functions are.

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by