photo

Deepak Kumar

Last seen: 1년 초과 전 2019년부터 활동

Followers: 0   Following: 0

통계학

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

배지 보기

Feeds

보기 기준

답변 있음
MATLAB crashes when opening Simulink
It might be due to hardware graphics issue. If you are unable to upgrade the hardware graphics of your system, try using softwar...

4년 초과 전 | 0

답변 있음
Variable MCR_CACHE_SIZE?
You can set the size of MCR_CACHE_SIZE environment variable by editing the .max_size file which resides in the current cache dir...

4년 초과 전 | 0

답변 있음
S-parameters peaks and bandwidth
Couple of points that I noticed in your code: S_ML is S-parameter object >> S_ML S_ML = sparameters: S-parameters ob...

4년 초과 전 | 0

| 수락됨

답변 있음
S-parameters peaks and bandwidth
Can you try to rename your script file (findpeaks.m) and check if it resolves your issue ?

4년 초과 전 | 0

답변 있음
How can i create discrete time system with 2 delays 2 zeros and 3 poles in matlab?
You can create discrete-time linear models using the tf, zpk, ss, and frd commands. Refer the below documentation link for more ...

4년 초과 전 | 0

답변 있음
removing blink peaks from a signal
You can use "findpeaks" function in MATLAB to final the local maxima (peaks) of the input signal vector. The below documentation...

4년 초과 전 | 0

답변 있음
fprintf matrix question. Need help.
Please refer the below documentaion to understand the uses of fprintf function https://www.mathworks.com/help/matlab/ref/fprint...

거의 5년 전 | 0

답변 있음
Use my own .csv with MATLAB sample code; specifically with Wine Classification Example
I'm reffering the documentation link https://www.mathworks.com/help/deeplearning/examples/wine-classification.html to answer you...

거의 5년 전 | 0

답변 있음
How to plot more than Pfa in shindman equation
Make pfa as a vector and put all the values of pfa into this e.g. Pfa = [1e-6,1e-3,1e-7]; Now use another loop to iterate throu...

거의 5년 전 | 0

답변 있음
2 bit binary signal to numerical value
Try the below code. It should work fine. clc clear all a=your_array; %Assign your array to the vaiable 'a' L=size(a,1);%Get ...

거의 5년 전 | 1

| 수락됨

답변 있음
To compute magnitude and phase spectrum
I'm not sure what F is referring here. However, we can find the Magnitude and Phase spectrum of a function using FFT function ...

거의 5년 전 | 1

| 수락됨