A function which equal to type command?

2 views (last 30 days)
Hello,
I remember that there is a function which operates same as typing a function input directly.
For example, If you input command
?function(data=0.1)
It operates same as just typing
data=0.1
I can't remember exact name of this function....
Please help me..
Thanks for your advice. :)
  2 Comments
Brendan Hamm
Brendan Hamm on 20 Mar 2015
I think you are looking for
eval('data = 0.1')
Stephen23
Stephen23 on 20 Mar 2015
Avoid using eval for something trivial like this. Read my answer to know why.

Sign in to comment.

Accepted Answer

Stephen23
Stephen23 on 20 Mar 2015
Avoid trivial use of eval in MATLAB. This is poor practice as has been explained many times on this forum, and is not recommended by MATLAB themselves:
When you are a beginner it seems like a cunning and fast way to store information, but actually it is really bad practice to name your variables dynamically. MATLAB is also not intended for this kind of variable naming: if you continue to include data in the variable names then you will find yourself fighting many more of these battles against MATLAB.
However when you use more appropriate storage for your data (and meta-data) then you will suddenly find lots of MATLAB functions that do many useful operations for you, quickly and easily.
In your case a much more robust solution would be to use structures , where you can include fields for each kind of data (e.g. Process type, Flow data, Temperature data, Notes, Units, etc), or cell arrays . There are many functions that support working on structures and cell arrays, and can access these data easily, and they can also be used in vectorized code (which is something you need to learn about). And yes, you can even define structure fieldnames dynamically .
Placing your data in a structure or cell array also makes it much easier to pass to functions: can you imagine the fight you would have trying to pass hundreds of dynamically named variables to a function?
If you have a newer version of matlab you can also use a table , which stores the data together in one array but also allows key-name access to the columns. This might be a good alternative for your data.
In case you are interested, here are some pages explaining why dynamically assigning variable names is a really bad idea in MATLAB:

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!