Respondida
PID tuning / optimization usig machine learning/deep learning algorithm
Hi Avdhut, You could use the blocks that are shipped with the Reinforcement Learning Toolbox to tune a PID controller. An examp...

alrededor de 1 año hace | 0

| aceptada

Respondida
How to analyze EMG signals?
Hi @Merve Deniz Senelen, You can import your “.bin” and “.hea” files using the following steps: Unzip the Files: You can use...

alrededor de 1 año hace | 0

Respondida
How to convert 3D plot to .STL
Hello, A possible solution is to download the “stlwrite.m” file from the following link: https://www.mathworks.com/matlabcentra...

alrededor de 1 año hace | 0

Respondida
Plot 3 variables on 2D plot
Hi Joel, The “scatter” function in MATLAB has a functionality by which you can pass a third parameter along with the...

alrededor de 1 año hace | 0

Respondida
Calculation of Hyperparameter for the process noise (Qx)
Hi Md Armanul Hoda, From the description, it seems you are discussing the use of a Kalman filter or a similar estimation algori...

alrededor de 1 año hace | 0

Respondida
Encountering an error during Fault Injection
Hi @RAGHUVEER RAJESH, Without your model details, it is hard to pinpoint exactly why the issue exists. However as per my unders...

alrededor de 1 año hace | 0

Respondida
Accessing GPIO and other peripherals in Soc Blockset for Xilinx ZCU216
Hi Patrick, Please refer to the following links that detail techniques to leverage the peripherals present on the FPGA using...

alrededor de 1 año hace | 0

Respondida
Erroneous generated FIR Filter Coefficient File for Xilinx (.coe)
Hi Anastasios, The filter coefficients are normalized to the input range and scaled by the Numerator range, which is seen in t...

alrededor de 1 año hace | 0

Respondida
Programmatically get bus data type of In Bus Element block
Hi @Gergely, To obtain the bus data type (name) of the associated parent bus from an 'In Bus Element' block in MATLAB, you can ...

más de 1 año hace | 0

Respondida
Is it possible to have a user defined sample time for compiled Simulink code?
Hi @Travis Thomson, Yes, it is possible to make the sample time of your Simulink model configurable at runtime, allowing the ...

más de 1 año hace | 1

Respondida
Clutch implementation into diesel generator
Custom Clutch - MATLAB & Simulink - MathWorks India Hi @Ashley Mauro, Do check out the documentation link, they have used the ...

más de 1 año hace | 0

Respondida
calculate throughput of FPGA in simulink
Hi Arwa, AMD give a guide on using the Simulation Data Inspector(SDI) to find throughput- I've linked it here. You can also fin...

más de 1 año hace | 0

Respondida
Simulink model deployed in Raspberry Pi is not running in Real-time
Hi Suresh, You could try increasing the sample time, which forces the model to use lesser number of time steps to simulate your...

más de 1 año hace | 0

Respondida
how to change the SPICE simulation engine from SIMetrix to LTspice in ee.spice.semiconductorSubcircuit2lookup
Do check out this documentation link where the SIMetrix and LTSpice results are compared- Generate standard MOSFET characterist...

más de 1 año hace | 0

Respondida
How do I see all the answers of the iteration?
Move the constants out of the loop. Then, see what variables depend on Tj and put them in the loop. Assuming you want to find th...

más de 1 año hace | 0

| aceptada

Respondida
Create a Matlab Function that averages the input signal with the simulation running in the Simulink -- No upload to workspace
Hi, Without knowing your harware target, this is the basic idea you need to implement. The one-stop solution however is the m...

más de 1 año hace | 0

| aceptada

Respondida
How can i get the system clock of a raspberry pi 4 with Simulink?
You need to include profile_timer.h from MATLAB\R2023a\toolbox\target\shared\armcortexabase\include\profile_timer.c. This has a ...

más de 1 año hace | 0

Respondida
How do I use MATLAB Coder to generate C++ code for an IIR filter that was generated by designfilt?
So, first of all, the dellip argument should be declared inside the gpsFilter function, because code generation does not support...

más de 1 año hace | 0

Respondida
How in Simulink send one signal from an input to one of several outputs according to a given output number?
I believe what you are looking for is analogous to a digital decoder. I do not believe a Simulink block to do this exists, but y...

más de 1 año hace | 0

Respondida
How to show a specified tau font in the subscript of y axis label in a matlab plot?
There is a LaTeX solution to this, by encasing your label inside \mathrm{}. The output has been shown below. Is this the font yo...

casi 2 años hace | 0

Respondida
Implement the Software Architecture in MATLAB\SIMLUNK and convert it to C
Check out Simulink Coder and Embedded Coder. I think this is what you are looking for. Simulink Coder - Simulink® Coder™ (forme...

casi 2 años hace | 0

| aceptada

Respondida
Find the first value of each groups.
x = [3 3 3 4 4 5 5 5 5 3 11]'; y = [1 2 4 5 7 2 1 8 10 10 1]'; result = [x,y]; [GroupId,~,ic] = unique(result(:,1)); Group...

casi 2 años hace | 1

| aceptada