Statistik
RANG
1.848
of 295.527
REPUTATION
34
ANTWORTZUSTIMMUNG
100.0%
ERHALTENE STIMMEN
7
RANG
of 20.242
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
how demux the Matrix 3*3 in simulink ?
You can use the Selector block for matrix. Here the documentation.
10 Monate vor | 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 Monate vor | 1
| akzeptiert
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 Monate vor | 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 Monate vor | 2
| akzeptiert
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 Monate vor | 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...
etwa ein Jahr vor | 0
| akzeptiert
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...
mehr als ein Jahr vor | 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....
mehr als ein Jahr vor | 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...
mehr als ein Jahr vor | 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...
mehr als ein Jahr vor | 0
| akzeptiert
Cannot solve due to algebraic loop involving
Hi @FAIZ UL HASSAN, try to add a Unit delay block.
mehr als ein Jahr vor | 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 ...
mehr als ein Jahr vor | 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.
mehr als ein Jahr vor | 2
| akzeptiert
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(...
mehr als ein Jahr vor | 0
Frage
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...
mehr als ein Jahr vor | 1 Antwort | 0