Info

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

How are Running Three Function Simultaneously

1 回表示 (過去 30 日間)
omar A.alghafoor
omar A.alghafoor 2020 年 5 月 24 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Hi friends.....
i have three functions must by " Running Simultaneously "
the functions :
[after_encryption_redchaotic] = Encryption_chaotic(redChannel,Rk1);
[after_encryption_greenchaotic] = Encryption_chaotic(greenChannel,Gk2);
[after_encryption_bluechaotic] = Encryption_chaotic(blueChannel,Bk3);
I write this code ;
% calling encryption each Channel
parfor i = 1:3
if i == 1
[after_encryption_redchaotic] = Encryption_chaotic(redChannel,Rk1);
elseif i==2
[after_encryption_greenchaotic] = Encryption_chaotic(greenChannel,Gk2);
else
[after_encryption_bluechaotic] = Encryption_chaotic(blueChannel,Bk3);
end
end
but appear this error :
Undefined function or variable 'after_encryption_redchaotic'.
Error in secure_home_surveillance_system (line 45)
[after_encryption_redSBOX] = Encryption_SBOX(after_encryption_redchaotic,SBox);

回答 (1 件)

omar A.alghafoor
omar A.alghafoor 2020 年 6 月 5 日
The problem has been resolved

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

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by