Having Unrecognized function or variable (name)
Mostrar comentarios más antiguos
I am having a Error in my code as-
Unrecognized function or variable 'keyGen'.
Error in BEProj (line 2)
subKey = keyGen()
The code which I am trying to run is-
clc; clear all; close all;
subKey = keyGen()
save('subkey.mat','subKey');
load('subkey.mat');
[y_1_0, y_2_0, y_3_0] = generateParamY(subKey);
[x_0_1 x_0_2 x_0_3] = generateParamX(subKey);
[epsilon, mu, alpha_1, alpha_2, alpha_3] = generateParam(subKey);
newper
df
decry
INVPER
INVIMAGE
Can anyone please help me solve this error ?
Respuestas (1)
Sulaymon Eshkabilov
el 18 de Oct. de 2021
0 votos
Note that the assigned variable value for keyGen() has to be predefined or initialized before assigning its value to another variable.
1 comentario
Categorías
Más información sobre Call Python from MATLAB en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!