Answered
setting an output value as a threshold value for finding local maxima block in simulink
Hi Ramon, The Peak Finder block in Simulink accepts threshold as a property. So, it cannot be changed during the simulation run...

mer än 2 år ago | 1

Answered
Stop data plotting in Matlab App Designer
Hi Ashleigh, I understand that the issue is regarding the integration of stop button with the uiaxes. You could look at the att...

mer än 2 år ago | 1

Answered
How can I use a customized figure-function to show over UIAxes in app designer?
Hi Mohammad, You could look at the following code snippet: SeqLogoFig(sequence,'AXES_HANDLE',app.UIAxes,'alphabet','aa','cutof...

mer än 2 år ago | 0

| accepted

Answered
Need help calculating BPM from ECG
Hi Usama, I understand that the issue is related to the Heart rate computation in BPM. As per the code attached, the 'Heartrate...

mer än 2 år ago | 0

Answered
Read table data from url
Hi Ashley, Please go through the below MATLAB answer and File Exchange posts: http://blogs.mathworks.com/pick/2010/08/20/get-h...

mer än 2 år ago | 0

Answered
How to use array data for successive operations
Hi Laura, You could leverage vectorization techniques to solve the problem. Have a look at the following code: A = [4.6; 9.3; ...

mer än 2 år ago | 0

| accepted

Answered
How can I plot my figures like attached plots?
Hi Nisar, (1) You could use axes to add multiple axes to the same figure & then alter their properties as per your requirements...

mer än 2 år ago | 0

| accepted

Answered
How to plot arbitrary line slice against x or y axis in a table?
Hi Biswajit, You could use the VariableNames property of the table to get the column names which are actually the x axis data a...

ungefär 3 år ago | 0

| accepted

Answered
How to sum according to specific ranges within same table?
Hi Hedi, You could load the excel file as a table. You could refer to this documentation page link for more details. The follow...

ungefär 3 år ago | 1

| accepted

Answered
Gauss-Seidel Method in Matlab
Hi Zhukun, You could use another vector y to store the values in the vector x and compare the updated x vector to the vector y ...

ungefär 3 år ago | 0

Answered
Add cartesian axes to polarscatter?
Hi Maximilian, You could try the following workaround: 1) You could make use of axes and polaraxes commands and their properti...

ungefär 3 år ago | 0

| accepted

Answered
How can I plot 2 data in 1 graph and find common peak
Hi Phudit, You can refer to documentation of hold function to plot 2 different plots on same figure. To calculate the common pe...

ungefär 3 år ago | 0

| accepted

Answered
Simulink execution for plant transfer function
Hi Ketan, You can refer to the documentations of LTI system and Transfer Fcn blocks to generate the transfer functions. For t...

ungefär 3 år ago | 0

Answered
How can I prevent update of x(i) at each step of the loop? Essentially, this is a code for Gauss Seidel. How do I modify it to make it Jacobi iterative method?
Hi Avinash, You could try assigning the values stored in x into another variable y at the start of the loop and use the y value...

ungefär 3 år ago | 0

| accepted

Answered
Solve dispersion equation (8). I know h, d, ua and u. How can I solve such equation in matlab
Hi Vishal, You can declare beta as a symbolic variable and use solve function to solve the dispersion equation. You can refer t...

ungefär 3 år ago | 0

Answered
How to identify exact coordinates of a circle on geoshow?
Hi Eitvydas, A possible workaround is to use scxsc function to calculate the intersection of 2 circles of interest whose center...

ungefär 3 år ago | 0

Answered
Loop imagesc together for traffic simulation
Hi Anthony, You could look at the following code: rw = 11; rl = 40; road = zeros(rw,rl); xpos1 = 1; ypos1 = 3; xpos2 = ...

ungefär 3 år ago | 0

Answered
How do I create and square polynomial equations
Hi Karan, You could generate the equation of transfer function in MATLAB using tf command. You could also use feedback function...

ungefär 3 år ago | 0

Answered
How to read each value of a column and replace it with another value when a rule is met?
Hi Rebeca, You could use for loops and if conditions with proper boundary conditions as required to solve the problem. To speed...

ungefär 3 år ago | 0

Answered
How to plot Mhz signal in simulink
Hi Bhavish, The possible issue might be the simulation time. Since the signal frequency is in the MHz range, you can reduce the...

ungefär 3 år ago | 0

Answered
Unable to perform assignment because the size of the left side is 1-by-1 and the size of the right side is 1-by-2.
Hi Shaan, The error is due to the line 15 of the function Basic_Euler: w1i(1:neqn1,i+1) = x1; The size of x1 is getting chang...

ungefär 3 år ago | 1

Answered
Simulink with AWGN channel
Hi Jozef, You can refer to the documentation of sine wave block in Simulink. It supports the parameters like amplitude, frequen...

ungefär 3 år ago | 0

Answered
How to solve SIR model with ode45?
You can refer to the following code: [t,dYdt] = odeOut; function [t,dYdt] = odeOut % time dependent window tRange = linsp...

ungefär 3 år ago | 0

Answered
Creating a profile plot for a trajectory
Dynamic plots can be created in MATLAB in three different ways. You can refer to the Animation Techniques documentation page for...

ungefär 3 år ago | 0

Answered
ECG signal input to simulink.
You can use from workspace block or from file block to load the data present in MATLAB workspace into Simulink. The following bl...

ungefär 3 år ago | 0

Answered
Signal Time Range-SIMULINK
You may try to solve using the following steps: 1) Use clock block to get the current simulation time. 2) Append a combination...

ungefär 3 år ago | 0

Answered
How to create own binary signal in simulink ?
Using 'Signal builder' to generate binary signals might not work because the output of this block is of type 'double'. You may r...

ungefär 3 år ago | 0

| accepted

Answered
Taking the median filter of two images
You can refer to the documentation of medfilt2 function which is a part of Image processing toolbox which performs median filter...

ungefär 3 år ago | 0

Answered
title for plot segments
I understand that you would like to have multiple titles to a plot corresponding to the firing rate of various segments of that ...

ungefär 3 år ago | 0

Answered
the 'stepImpl' method of the System object 'Simulation3DActorRayTraceRead' returned a value that has data type 'double', which does not match the data type 'single' returned by the 'getOutputDataTypeImpl' method
There are multiple possible root causes for this issue. Please try the following troubleshooting steps to gather more informatio...

ungefär 3 år ago | 0

Load more