Statistics
RANK
1.847
of 295.467
REPUTATION
34
CONTRIBUTIONS
1 Question
14 Answers
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
7
RANK
of 20.234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
how demux the Matrix 3*3 in simulink ?
You can use the Selector block for matrix. Here the documentation.
10 maanden ago | 1
How to obtain allowed values for a configuration parameter programmatically?
You can access these informations with get_param(object,'DialogParameters'). It gives you a struct with all parameters and every...
10 maanden ago | 1
| accepted
How to visualize the values in Simulink test manager?
Hi @Sohan, I think you have to add the simulation output in your test cases, so 'Sim Output' will appear below 'Verify Statemen...
10 maanden ago | 0
My plot function problem
Try adding the dot for the element-wise division: 1./(T*7.74809172e-5)*(0.1491e-14) file = readtable('si_100_trans.xlsx'); x_r...
10 maanden ago | 2
| accepted
What does "invalid use of operator" mean here? I add parenthesis, that becomes error, i remove it and then the operator becomes the error...
Hi Yuvraaj, the invalid operator is here, the dot after r: sqrt((1-(beta^2+4*zeta1*zeta2*beta)*(r.^2)).^2 + 4*(r.^2).* (zeta1+...
10 maanden ago | 0
How to programmatically set model to use data dictionary?
Hi Izaak, to set data dictionary used by a model you could use the command: set_param('ModelName','DataDictionary','DataDiction...
ongeveer een jaar ago | 0
| accepted
How would I remove multiple specific elements from an array.
If I have understood correctly, you could replace your second-last line of code with B(B==r) = [] Data = [923 916 932 927 908 9...
meer dan een jaar ago | 0
is it possible to add simulink function in customized library?
You could add to a custom library a chart with your simulink function and then use this chart as base for your stateflow charts....
meer dan een jaar ago | 0
Unrecognized function or variable 'a'.
Hi Dao, you have to add a, b and c in syms command: syms x y z a b c f = (a*x + b*y + c*z) * (asin(x*y*z)); disp('Dao ham r...
meer dan een jaar ago | 0
How to safe data from multiple "To Workspace " blocks in one Matrix
Hi Dan, If I have understood correctly, you want solve the issue on simulink and not in post processing on MATLAB. In this case...
meer dan een jaar ago | 0
| accepted
Cannot solve due to algebraic loop involving
Hi @FAIZ UL HASSAN, try to add a Unit delay block.
meer dan een jaar ago | 0
How to determine dates when aircraft moving northwards or southwards?
I would do it in this way Test = readtimetable("Test.xlsx","VariableNamingRule","preserve"); % to import data (or using Import ...
meer dan een jaar ago | 1
How do I insert a code block (with all its code, colors, etc) into a section of my report?
You could try this: https://it.mathworks.com/help/rptgen/ug/mlreportgen.report.matlabcode-class.html.
meer dan een jaar ago | 2
| accepted
Converting matlab.double to python compatible format
This syntax py.array.array('d', rand(1,2)) should work. py.array.array('d', rand(1,2)) Or if you want a Python list: py.list(...
meer dan een jaar ago | 0
Question
Where can I find Simulink block element identifier?
I used the command Simulink.ID.getSID to get a simulink block ID. Can it be found somewhere in the properties? I would like to i...
meer dan een jaar ago | 1 answer | 0