photo

Epsilon


Last seen: 2日 前 2024 年からアクティブ

Followers: 1   Following: 0

Programming Languages:
C++, MATLAB
Spoken Languages:
English, Hindi, Bengali
Pronouns:
He/him

統計

All
  • Knowledgeable Level 4
  • 3 Month Streak
  • Solver
  • First Answer

バッジを表示

Feeds

表示方法

回答済み
What is the correct syntax to assign simulated data to my variables?
Hi Gabriel, In the provided code the variable ‘myirfs1’ is a structure array which is assigned different struct fields by using...

16日 前 | 2

回答済み
GPS Signal Transmission, Acquisition and Tracking Using PlutoSDR
Hi Abdul, The example 'satcom/GPSReceiverAcquisitionAndTrackingUsingPlutoSDRExample' is new to release R2023a and thus cannot b...

16日 前 | 0

| 採用済み

回答済み
Hardware Setup for C2000" – Unable to Proceed After Selecting Process Family
Hi Sushan, I had faced the same issue of the elements in the setup window getting scaled. This resulted in some elements being ...

17日 前 | 0

回答済み
In an old file *.sfit, can I check the matrix with the data that I added for the Z coordinate for example?
Hi Dobril, The data for any figure can be found in the figure properties. To see the properties use an handle that refers to th...

17日 前 | 1

回答済み
TON and TOF Timer Blocks in Simulink Ignore Preset Time (PRE)
Hi Granto, In the above provided model the preset is depending on the sample time (single step size) rather than the preset val...

20日 前 | 0

回答済み
Simulink dashboard button matching
Dear Matthew, The 'S2' block linked to the slider switch and the 'Desired State' can be updated using the set_param function. T...

21日 前 | 0

回答済み
Automatically disable subsystem and manually re-enabled
Dear Jack, An “Enabled subsystem” can be enabled for a desired duration via ‘set_param’ by using a ‘Delay’, ‘Subtract’ and ‘Com...

21日 前 | 0

回答済み
Entering the mechanical and volumetric efficiency of a fixed displacement pump
Hi Zeko, The input ports for the mechanical and volumetric efficiency accept physical signals as the input signal type. To adju...

25日 前 | 0

回答済み
How the Delay one step block and stop time ( simulation time) infuence each other on simulink?
Hi John, The ‘Model Stop’ time and the ‘Delay Length’ in the one step delay block are not directly related even though it might...

25日 前 | 1

| 採用済み

回答済み
tuning paramters in referenced model whithin a Simulink Real-Time model
Hi Yufeng, In R2024a tuning block parameters inside a referenced model is not possible, only workspace parameters, model argum...

約1ヶ月 前 | 0

回答済み
How to disable the display of coverage report once the simulation is stopped
Hi Prasad, It is not possible to disable coverage report in the model configuration settings or in the ‘Simulink Coverage’ app...

約1ヶ月 前 | 0

回答済み
How can I use the resource amount source on the resource pool block?
Hi John, Changing the 'Resource amount source:' option to 'Change amount through control ports' is indeed the correct first ste...

約1ヶ月 前 | 2

| 採用済み

回答済み
How can I build organic rankine cycle model with math in simulink but not use simspace?
Hi 琦, To add mathematical calculations in a model, 'Math Function' blocks can be used. They allow Mathematical functions includ...

2ヶ月 前 | 1

| 採用済み

回答済み
which toolbox do I need to run openExample('px4/ActuatorControlUAVCANDroneCANExample','supportingFile','px4ActuatorWrite')?
Hi Kate, The 'px4/ActuatorControlUAVCANDroneCANExample' example requires the 'UAV Toolbox Support Package for PX4 Autopilots' ...

2ヶ月 前 | 0

回答済み
Why do two equivalent functions not produce same output
Hi Ryder, It might seem like the expanded version of the equation is correct and produces the same value on substituting k with...

2ヶ月 前 | 0

| 採用済み

回答済み
why in Free vibration 2DOF system with damping , the displacement is increasing with time?
Hi Parthajit, The incorrect displacement and velocity calculations seem to be due to the wrong direction of forces, defined in ...

2ヶ月 前 | 0

回答済み
how to reset simscape example?
Hi 재현, To reset the example, search the location for the 'TwoPhaseFluidRefrigerationExample' using 'which' which TwoPhaseFl...

2ヶ月 前 | 1

| 採用済み

回答済み
Vectorized code slower than loops
Hi Alessandro, Method1 is handling a single column vector at a time and is faster than method2 which computes the entireRHS at ...

2ヶ月 前 | 1

| 採用済み

回答済み
How can I adjust the colorbar scale in my contour plot?
Hi Eleanore, The color scaling should be automatically done based on the range of data in velocity_grid_gw and velocity_grid_w ...

2ヶ月 前 | 1

| 採用済み

回答済み
PID tuning to meet conditions for settling time and overshoot while a stable system with minimum peak time and zero velocity error.
Hi Ashaya, The answers to your queries are: Yes, for a linear close looped continuous-time system the negative real parts of a...

3ヶ月 前 | 0

回答済み
How to modify the mesh generated from meshgrid to create a rectangular void in the middle of the mesh
Hi Prasad, To create a void set the values at the indices to 'NaN'. [x, y] = meshgrid(0:1:15, 0:0.5:13); voidIndices = (x >= ...

3ヶ月 前 | 1

回答済み
Converting 1x1 struct with multiple fields to numeric matrix
Hi Mark, An approach to convert the struct to the desired matrix can be to extract the elements and then use pre allocation to ...

3ヶ月 前 | 0

| 採用済み

回答済み
So I wanna to make a 3x3 heatmap with all cells with a value of 1. I want the center grid to be a totally different color than the other grids without changing it's value
Hi Haoyan, It might not be possible to create a 'heatmap' with a different central cell color and same values displayed at the ...

3ヶ月 前 | 1

| 採用済み

回答済み
I am not getting the exact reactance part value j1.8 (mentioned in BOOK) using my code , I am getting zero for my reactance part code, Can anybody help me out?
Hi, The 'Zin_res' is not calculated properly as the validation "if(fr(k)==fmn);" fails due to the mismatch in exact values. To ...

3ヶ月 前 | 0

| 採用済み

回答済み
null or NaN entries in image arrays?
Hi Tim, It is possible to set the elements to NAN in order to be ignored. Attaching an example: % Sample image array img = ra...

3ヶ月 前 | 0

| 採用済み

回答済み
How can I execute a Simulink block only when a specific condition is met?
Hi 준호, To execute the set of blocks conditionally place them inside a subsystem. To do so select all the blocks then right clic...

3ヶ月 前 | 0

回答済み
Do I have a convergence issue?
Hi Timothy, The code is not converging and completing the max iteration steps(3000). This is happening as the "residual (lhs -...

3ヶ月 前 | 0

| 採用済み

回答済み
How to save the graph obtained with Simulink's scope as numerical data
Hi 光希, To export the voltage and time, use the 'outport' block to save the data in the MATLAB base workspace and then convert t...

5ヶ月 前 | 0

| 採用済み

回答済み
uicontrol of pushbutton cannot set text color
Hi raym, Try removing the extra space after ForegroundColor. Above mentioned code rectified: % Create a figure fig = figure;...

5ヶ月 前 | 1

| 採用済み

回答済み
How plot charts/sim animation like battery simulation chart function of simscape battery?
Hi Soham, Animating a plot generally involves updating the plot inside a loop by updating the values or properties. Example c...

5ヶ月 前 | 0

さらに読み込む