Why when i load workspace manually the code works but when i try to load it from code doesn't?
이전 댓글 표시
Im trying to load some workspace variables for a neural network from code by using this
S0 = load('mynet.mat');
but when i run it i get this error:
Undefined function or variable 'myNet'.
Error in transfer (line 46)
nnet = myNet; % Load the neural net
If i am loading it manually and run it i have no problems. Why and how can i make it work from code?
댓글 수: 3
Dennis
2018년 7월 4일
You load your variable in a struct. Try
myNet=S0.myNet;
Niculai Traian
2018년 7월 4일
Adam
2018년 7월 4일
You can see your workspace in Matlab. Just take a look at it and you'll see your struct.
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!