Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to set a variable using matlab eval/feval function. It is possible to write the whole statement as a string and use = sign, but I want to pass the value as a separate argument (not in string).

The arithmetic operators in matlab have function equivalents, so the strings of these functions names can be used in eval and feval functions. Is there a function equivalent for the = operator?

The mechanism I am looking for would be like:

eval('set','x',5)

And I expect it to set value of the variable x to 5.

share|improve this question
Can you give an example of what you are trying to do... even if the syntax is wrong. It will be easier to fix that, than try to guess from your description. – Floris Feb 11 at 17:44
I am using matlab from java using the MatlabControl library. I can use eval/feval and by passing java typed arguments to the corresponding method, they will be converted to matlab types automatically. – Hassan Feb 13 at 8:03
I edited my question as you said. – Hassan Feb 13 at 8:13

2 Answers

up vote 2 down vote accepted

It seems like you are looking for something like assignin

share|improve this answer
That's exactly what I was looking for. Thank you! – Hassan Feb 13 at 8:25

Since you said "It is possible to write the whole statement as a string", but you want part of the string to be passed in as a variable, would the following work:

evalString = sprintf("most of the string with %s a placeholder", extraArg);
variableToSet = eval(evalString);

In this way you create a string from a "variable component". Of course if extraArg isn't a string, you could convert it from whatever it was, with appropriate formatting.

share|improve this answer
Thank you. It is a good work around for some cases. Actually I am currently doing something like that in a simple case, but writing a string converter for every case is a bit of a bother. – Hassan Feb 13 at 7:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.