Community Profile

photo

Selena Mastrodonato


Last seen: 18 dagen ago Active since 2020

Followers: 0   Following: 0

Message

Space Engineer

Programming Languages:
Python, Javascript, MATLAB, SQL, HTML, CSS
Spoken Languages:
English, Spanish, Italian
Pronouns:
She/her

Statistics

All
  • MATLAB Central Treasure Hunt Finisher
  • Knowledgeable Level 2
  • First Answer
  • R2016b Feature Challenge Master
  • Project Euler I
  • Thankful Level 1
  • Speed Demon
  • Leader
  • Scholar
  • Promoter
  • CUP Challenge Master
  • Draw Letters

View badges

Feeds

View by

Answered
how demux the Matrix 3*3 in simulink ?
You can use the Selector block for matrix. Here the documentation.

3 maanden ago | 1

Answered
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...

3 maanden ago | 1

| accepted

Answered
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...

3 maanden ago | 0

Answered
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...

3 maanden ago | 2

| accepted

Answered
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+...

3 maanden ago | 0

Answered
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...

8 maanden ago | 0

| accepted

Answered
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...

11 maanden ago | 0

Answered
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....

11 maanden ago | 0

Answered
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...

11 maanden ago | 0

Answered
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...

11 maanden ago | 0

| accepted

Answered
Cannot solve due to algebraic loop involving
Hi @FAIZ UL HASSAN, try to add a Unit delay block.

12 maanden ago | 0

Answered
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 ...

12 maanden ago | 1

Answered
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.

12 maanden ago | 2

| accepted

Answered
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(...

12 maanden 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...

ongeveer een jaar ago | 1 answer | 0

1

answer