Owning Class: basic
Requires: MathScript RT Module
eval(a)
Executes scripts in a string.
| Name | Description |
|---|---|
| a | Specifies the scripts you want LabVIEW to execute. a is a string. |
The following table lists the support characteristics of this function.
Causes reduced performance ( ) |
Yes |
| Supported in the LabVIEW Run-Time Engine | No |
| Supported on RT targets | No |
for n = 1:10
str = ['A', int_to_str(n), '=n'];
eval(str)
end