How can I write a syntax in eval function?
Afficher commentaires plus anciens
Is it possible to write the following syntax in eval function? If yes, please write it down
I_para(i,:)=(((((sqrt(P12(i,indx)./(4.*pi))).*cos(theta(j)).*(cos(phi)).^2)) + ((sqrt(P11(i,indx)./(4.*pi))).*((sin(phi)).^2))).^2).* (pi.*(r_med(i)).^2.*Qsca_c(i));
8 commentaires
John D'Errico
le 17 Déc 2021
You want to use eval on that? Please don't. There can be no good reason to do so.
Wiqas Ahmad
le 17 Déc 2021
Rik
le 17 Déc 2021
Why do you want to replace indexing with obfuscated code?
The real solution is to turn your P variables into an array as well. That way you can index both.
"Using eval command, I can better interpret my program output and will be understood that's why."
In reality it will make it much more complex (as the mere existence of this question should be warning you).
"I tried some syntax to convert but shows the following error."
Perhaps the difficulty of debugging one simple line of code gives you one clue why that approach should be avoided:
Using EVAL forces you into writing slow, complex, inefficient, buggy code that is hard to debug.
The simple and efficient approach is to use indexing, just like MATLAB is designed for.
Wiqas Ahmad
le 17 Déc 2021
Modifié(e) : Wiqas Ahmad
le 17 Déc 2021
Sargondjani
le 18 Déc 2021
Others were suggesting to use indexing. For example, with a cell array:
I_para{1,1} = ....
I_para{1,2} = ...
The error message means exactly what it says. The expressions are invalid. This is regardless of the abuse of eval(). They're invalid expressions in any context. I can't reasonably guess which parentheses are missing. You'll have to figure out what the expression is supposed to be.
i = 11; % placeholders
j = 22;
exp1 = ['I_para',num2str(i),num2str(j),'=','(','(sqrt(P12',num2str(i),'./(4.*pi)',').*cos(theta',num2str(j),'.*(cos(phi)).^2)','+','(sqrt(P11',num2str(i),'./(4.*pi)','.*(sin(phi)).^2)',').^2','.* (pi.*(r_med',num2str(i),'.^2.*Qsca_c',num2str(i),')',';']
[nnz(exp1 == '(') nnz(exp1 == ')')]
exp2 = ['I_para',num2str(i),num2str(j),'indx','=','(','(sqrt(P12',num2str(i),'indx','./(4.*pi)',').*cos(theta',num2str(j),'.*(cos(phi)).^2)','+(','(sqrt(P11',num2str(i),'./(4.*pi)','.*(sin(phi)).^2)',').^2','.*(','pi.*(r_med',num2str(i),'.^2.*Qsca_c',num2str(i),')',')',';']
[nnz(exp2 == '(') nnz(exp2 == ')')]
exp3 = ['I_perp',num2str(i),num2str(j),'indx','=','(','(sqrt(P12',num2str(i),'indx','./(4.*pi)',').*cos(theta',num2str(j),'.*(cos(phi)).^2)','-(','(sqrt(P11',num2str(i),'./(4.*pi)','.*(sin(phi)).^2)',').^2','.*(','pi.*(r_med',num2str(i),'.^2.*Qsca_c',num2str(i),')',')',';']
[nnz(exp3 == '(') nnz(exp3 == ')')]
Is there any reason why the constant portions of the expression are split into randomly-sized chunks?
['indx','=','(','(sqrt(P12']
instead of just
['indx=((sqrt(P12']
This seems unnecessary and makes everything more difficult to read.
Mistakes are an eventuality. Unnecessarily complicating things is basically asking for those mistakes to be obfuscated the moment they're made. This is a core element of the warnings already given about eval().
As DGM explains, by using EVAL you force yourself into writing unnecessarily complex code. But the disadvantages are not only that your code is more complex and obfuscated (than if you used basic indexing), but that you also remove all of MATLAB's inbuilt code helping tools (e.g. mlint static code checking, syntax error highlighting, variable highlighting, code warnings, etc.) which would help you to debug errors. So your design decision makes your code harder to debug. Your question is a good example of this.
Dynamically accessing variable names is also slow and inefficient compared to using basic MATLAB indexing.
Réponses (0)
Catégories
En savoir plus sur Matrix Indexing dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!