How to convert a string to a variable useable in a script?

조회 수: 1 (최근 30일)
Med Aymane Ahajjam
Med Aymane Ahajjam 2016년 7월 18일
댓글: Med Aymane Ahajjam 2016년 7월 19일
Hello, So The idea is to construct a string of the name of a variable (network class) that already exists in the workspace, and then calling that string for a specific input would output the same result as if it was done directly by the original variable.. Here is my code: Z11='haar_net_scg_in1_2obsrv'; yfit11 = eval(Z11(Ind_vald')); So the variable is called haar_net_scg_in1_2obsrv it's a network (ANN) and I want to use it to predict the class of an iput Ind_vald' . but I always get this error: Subscript indices must either be real positive integers or logicals. Knowing if I apply the network directly I get the results.. I really need this to work because I have a for loop with changing network names that I need to make them predict the class of some inputs Thanks

채택된 답변

jgg
jgg 2016년 7월 18일
편집: jgg 2016년 7월 18일
I think you're like 99% of the way there.
Z11='haar_net_scg_in1_2obsrv';
yfit11 = eval(strcat(Z11,'(Ind_vald)');
This should work as long as it's well-formed. You may need to transpose the Ind_vald item beforehand if you need it to be transposed in the expression.
  댓글 수: 1
Med Aymane Ahajjam
Med Aymane Ahajjam 2016년 7월 19일
Hey there jgg, thank you for your quick answer, it worked perfectly!
:D You're the best!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by