In my loadsignals.m script has a function which runs a script test.m to create variables in base workspace.
Why variables are not created in base workspace ?
How can i create variables in base workspace I do not want to use assignin function ?
loadsignals.m :--
function loadSignals(VarName)
... do some work ...
run(test);
end
test.m :--
a = uint8(10);
b = uint8(20);
c = uint16(0);
assignin), what is wrong with this solution?