I am trying to add user parameters for a block. I followed the instruction provided in section 4.3.7 (comments) of sysytembuild user's guide.
The steps were as follows:
1- I added a new parameter named (a_r) to a gain block (from the User Parameters section of Comment tag dialog field).
2- I selected this parameter and assigned a value of 5
Now, using the SBA command I retrieve this parameter:
------------------------------- Xmath outputs
[n=UserParameterName, p=UserParameterContent] = queryblock(1)
n
n (a string) = a_r
p
p (a list with 1 elements) =
1:
5
p(1)
ans (a string) = 5
---------------------------- end of Xmath outputs
Accordin
g to the documentation, using suffix (_r) will specify a real parameter (_i for integer and _s for string). However, the list object
obtained from "UserParameterContent" includes a string element and not a number. This can be verified by:
--------------------------------------- Xmath outputs
p(1) *2
Cannot evaluate * of a string.
modifyblock 1 ,{UserParameterContent = list(5)}
Expecting a list of strings
--------------------------------- end of Xmath outputs
It looks like that independent of the naming convention, the user parameters are stored in a list with string elements in contrast to what
mentioned in "Editing User Parameters Dialog" of the Help topics:
"To create a new userparameter, enter a name in the User Defined field, and then click the Add button. Note that the name must have
one of the following suffixes: _s (string), _b (boolean), _r (real), or _i (integer). "
The questions are as follows:
1- Is there a way to store n
on-string type user parameters?
2- If there is a way for that, then, is it only for scalar numeric values or vectors and matrices can also be stored in user parameters?
Thanks,