Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

How are Running Three Function Simultaneously

3 Ansichten (letzte 30 Tage)
omar A.alghafoor
omar A.alghafoor am 24 Mai 2020
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
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);

Antworten (1)

omar A.alghafoor
omar A.alghafoor am 5 Jun. 2020
The problem has been resolved

Diese Frage ist geschlossen.

Produkte


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by