필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

How are Running Three Function Simultaneously

조회 수: 3 (최근 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