Beantwortet
Finding first 5 maxima and its consecutive minima.
Hi Jai Vaidya, You can use "islocalmin" to find minima. Here is an example that uses "findpeaks" to find minima. Hope this h...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
How to write code for a composite signal with instantaneous frequency
Hi Jan Ali, It is my understanding that you want to add three signals that are defined only in particular intervels of time. F...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Is it possible to share content directly via Matlab online with a Campus license?
Hi Axel Wings In Matlab it is possible to share folders. Following documentation links may help you with the process. Share...

mehr als 5 Jahre vor | 1

Beantwortet
How can I visualise the side view of 3D matrix ?
Hi. It is my understanding that you want visualize side view of your 3d matrix after plotting. "View" command in matlab can b...

mehr als 5 Jahre vor | 0

Beantwortet
How to plot a dispersion diagram like this?
Hi It is my undersatanding that you want to draw ellipse, hyperbola and straight line in first quadrant. Try the following cod...

mehr als 5 Jahre vor | 1

| akzeptiert

Beantwortet
how can i combine 2 or more programm ?
Hi, It is my understanding that you want to use data in one program which is generated in another progarm . You could use "fun...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
How To Curve Fitting In Respect To Other Curves & Calculate Shift And Compression Of Curve
Hi, It is my understanding that you want to find relationship between your data sets. You may find 'lsqcurvefit" useful. You m...

mehr als 5 Jahre vor | 0

Beantwortet
Time axis of inverse Fourier transform with truncated frequencies
Hi Daniel Lalich, Answer to your question "how to label time axis?" t=0:1/fs:n/fs; % n is FFT length and fs is sampling freq...

mehr als 5 Jahre vor | 0

Beantwortet
Plotting Rician Fading Channel
Hi Saad Khan, You might want to smoothen the histogram. Here is the example for understanding smoothening of histogram using...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
How I get all frequency in FFT result?
Hi, As per my understanding , you want to all the frequcies available in the signal after it is being filtered out. In the las...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Have anyone tried to get similar results from the Deep Learning Package vs Keras?
Hi , It is my understanding that you want to implement regression using Matlab. You may find these links useful. Refer "Regres...

mehr als 5 Jahre vor | 0

Beantwortet
BPSK modulation. Calculate and plot the one-sided amplitude spectrum of the BPSK-modulated signal
Hi, Following code snippet is for generating sequence of 1 and -1 N=100; % number of symbols x= randi([0,1],N,1); BPSK=2*x...

mehr als 5 Jahre vor | 0

Beantwortet
Plot Discrete and Continuous Signals
Hi, I understand that you're trying to accept input data from user into the App Designer. Refer the following links to unders...

mehr als 5 Jahre vor | 0

Beantwortet
Matrix to Surf Incorrect
Hi, As per my understanding you want these following points to be plotted. (x,y,z)=> (15,50,0.1576549),(25,20,0.1581748),(2...

mehr als 5 Jahre vor | 0

Beantwortet
how to compute energy and power of discrete-time signal using symbolic calculations
Hi, I have tried your code and power is finite for discrete signal also. Use "simplify" to get limit value instead of limit e...

mehr als 5 Jahre vor | 0

Beantwortet
I want to run two different increments to get two graphs simultaneously using subplot
Hi, As per my understanding you either want to do matrix multiplication or elementwise multiplication of k with t and k2 wit...

mehr als 5 Jahre vor | 1

| akzeptiert

Beantwortet
Phase shift of transfer function
Hi, As per my understanding, you want to calculate transfer function a system from its input and output. In general transfer ...

mehr als 5 Jahre vor | 0

Beantwortet
Gaussian Grid in 2d
Hi, As per my understanding, you want custom grid lines that follow Gaussian distribution with specified mean and variance. Re...

mehr als 5 Jahre vor | 0

Beantwortet
Eliminate the baseline wavering of this signal
Hi, Baseline wavering can be eliminated by using "polyfit()" function followed by "polyval()" function. Step1: Calculate a ...

mehr als 5 Jahre vor | 0

Beantwortet
Change a symbol to a number
Hi, In order to assign number/value to symbols “subs()" can be used. The following code snippet is for better understanding of...

mehr als 5 Jahre vor | 0

Beantwortet
Eliminating nested loops without repeating input combinations for equation output
Hi, Eliminating nested for loops is possible using “ndgrid()” function. Look into the following code snippet for better unders...

mehr als 5 Jahre vor | 0

Beantwortet
USRP B210 Receiver - not possible to use application compiler
The following are two workarounds which you could try: a) Manually go through the MATLAB search path and remove the paths ...

mehr als 5 Jahre vor | 0

Beantwortet
Please help me how to proceed with the below equation to get A's and pi's values
Inbuilt abs, angle and complex functions can be used. A= [abs (complex (0.167,0.3)); abs (complex (0.096,-0.1))] Φ= [angle (...

mehr als 5 Jahre vor | 1