photo

charan


Last seen: 1 month 前 自 2023 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

0 个提问
110 个回答

排名
893
of 300,015

声誉
86

贡献数
0 个提问
110 个回答

回答接受率
0.00%

收到投票数
12

排名
 of 20,862

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 166,984

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 3
  • 6 Month Streak
  • First Answer

查看徽章

Feeds

排序方式:

已回答
Time shift a signal and save the new signal
Hi, If you want to align the signals in time domain you can try using correlation. Using correlation you can find the lag betwe...

3 months 前 | 0

已回答
Findpeaks based on signal frequency
Hi, Your approach does not seem to work whenever the spacing of breaths is inconsistent. In such cases using a fixed "MinPeakDi...

3 months 前 | 0

已回答
Hilbert transform for instantaneous phase when time data does not begin at zero
Hi, The DC offset you're observing in the instantaneous phase is due to the initial phase of the signal. This occurs because th...

3 months 前 | 0

已回答
detect distortion in a sine signal using an undistorted one with Simulink
Hi, You can detect glitches in Simulink by simply calculating the difference of the signals using a "sum" block. You can also d...

3 months 前 | 0

已回答
how to find the noise frequency in ECG signal?
Hi, 1200 Hz is clearly one of the noise frequency. To get the remaining noise frequencies you can use the "maxk" function in MA...

4 months 前 | 0

已回答
Wanted metlab code for median and mean frequency of EMG data
Hi, Mean Frequency is the "center of mass" of the spectrum, it is the average frequency weighted by power. Median Frequency is...

4 months 前 | 0

已回答
Derivative of Temperature vs time data
Hi Ryan, Here are some suggestions to calculate a smoother derivative of noisy data: Smoothing the data by using smoothing fil...

5 months 前 | 0

已回答
Calculate Lag from xcorr
Hi, I understand that you are getting a delay of 1 second instead of 0.5 seconds. Here are some things to consider: The "lags"...

5 months 前 | 0

已回答
Interpolation and Decimation Factors for USRP
Hi Saurabh, The interpolation factor decides the sampling frequency of the waveform. The sampling frequency is given by the mas...

7 months 前 | 0

已回答
Arranging column vector of bits as timeseries data for modulation
Hi Jack, Since you would like to create a standalone Simulink model, a possible method can be to use the "MATLAB function" bloc...

7 months 前 | 0

已回答
Solution of algebraic equation that a variable occures both in numerator and denomirator with respect to an other variable
Hi, The following code might help you: %random values for defined variables A=1; n0=1; a1=1; a2=1; G=1; cp=1; Ta=300; ...

7 months 前 | 0

已回答
why is my loop printing 0 instead of a value, not sure which part of the code is incorrect
Hello Erin, For the function "LandingDistance" the inputs "d1","d2","v0" are fixed and "thetaL" can vary from 0 to 90. The foll...

7 months 前 | 0

已回答
QPSK simulation with AWGN and BER using Simulink
Hi, From the attached screenshot, the model seems accurate for BER calculation of QPSK modulation and demodulation. Make sure t...

8 months 前 | 0

已回答
GMSK Bit error rate plot
Hi, The following code might help: hMod = comm.GMSKModulator('BitInput', true, 'InitialPhaseOffset',0); hDemod = comm.GMSKDem...

8 months 前 | 0

已回答
im trying huffman encoding in matlab and reached the part where i get a table with huffman codes, what's next ?
Hi, If you replace the pixel values with the code and store them in order you get a binary representation of image that is shor...

8 months 前 | 0

已回答
SNR Calculation on the basis of channel estimation using Pilot Symbols
Hi, Channel estimation is done at the receiver end using pilot signals and based on this estimation the CSI parameters like RI,...

8 months 前 | 1

已回答
How to developed MATLAB code of the Discrete time signal
Hi, A discrete time signal can be quanitized into "L" levels similar to the code shown below: L=4; X=rand(1,10) Xg=round(X*(...

8 months 前 | 0

已回答
if i change convolution encoder to 3/4 or 7/8 code rate can u tell BER shd improve wid comp to1/2 ?
Hi Shailee, In general when the code rate is increased from 1/2 to 3/4 or 7/8, the BER is reduced due to increased redundancy i...

9 months 前 | 0

已回答
I want to measure the line voltages in a three phase system, can I connect the voltage measurement between the two phases? Does it mean short circuiting the two phases?
Hi Rishabh, Connecting a voltmeter between two phases to measure the line-to-line voltage does not create a short circuit betwe...

9 months 前 | 0

已回答
getting group delay by differentiating phase of reflectance
Hi omnia, The spikes in the plot of differential of phase is because there are points of non-differentiability in the function ...

9 months 前 | 1

| 已接受

已回答
Passband gfsk modulation in simulink
Hello, Passband GFSK modulation can be performed in Simulink using the "CPM Modulator Baseband" block in Simulink. This can be ...

9 months 前 | 0

已回答
How to Output Updated Parameters Value in ode Integration Process When the odeEvent is triggered ?
Hi Chuguang, The call back function is called whenever the event occurs, only if the "Response" parameter is set to "callback"....

9 months 前 | 1

| 已接受

已回答
Rename TIF files in a folder
Hello Tomer, You can extract the file names using "dir" function. Then by looping through each file use regex expressions to ge...

1 year 前 | 0

已回答
How can I write a script to replace a specific integer value in my table, with the average of the data above and below that integer in the table
Hello JJ, You can use logical indexing to find all the index values containing the value "999". You can replace these values wi...

1 year 前 | 0

| 已接受

已回答
为什么这段数模代码反复调试后仍然出错?
Hello, In the first code in the line "f=-d2f+df" the variables "-d2f" and "df" are symbolic expressions so the variable "f" th...

1 year 前 | 0

已回答
Integration over different sampling rates
Hello Kyle, You can get the correct value for the area by giving the time vector also to the "trapz" function. It gives the int...

1 year 前 | 0

| 已接受

已回答
Finding Coefficients in Bspline is making a problem ?
Hello Rohitasya, The code you have written is accuarte for calculating the coeffecients.The following code achieves the same re...

1 year 前 | 0

已回答
correct for these codes and help me to get running codes
Hello, I made the following changes to the code to make the array sizes compatible. rxSignal = awgn(H * txSymbols', SNR_dB, 'm...

1 year 前 | 0

已回答
setting up infinite sequence and plotting
Hello Robert, I am assuming that you want to sum 1/(n^3+1) and not n^3+1 since the sum for n^3+1 tends to infinity as n moves t...

1 year 前 | 0

加载更多