Deepak Kumar - MATLAB Central
photo

Deepak Kumar

Last seen: 2 years 前 自 2019 起处于活动状态

Followers: 0   Following: 0

统计学

All
MATLAB AnswersCodyZoom OutFrom 10/19 to 04/25Use left and right arrows to move selectionFrom 10/19Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

0 个提问
11 个回答

Cody

0 个问题
2 个答案

排名
3,131
of 298,132

声誉
18

贡献数
0 个提问
11 个回答

回答接受率
0.00%

收到投票数
2

排名
 of 20,538

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
88,878
of 160,453

贡献数
0 个问题
2 个答案

评分
30

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

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

查看徽章

Feeds

排序方式:

已解决


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

5 years 前

已解决


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

5 years 前

已回答
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...

5 years 前 | 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...

5 years 前 | 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...

5 years 前 | 0

| 已接受

已回答
S-parameters peaks and bandwidth
Can you try to rename your script file (findpeaks.m) and check if it resolves your issue ?

5 years 前 | 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 ...

5 years 前 | 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...

5 years 前 | 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 years 前 | 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 years 前 | 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 years 前 | 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 years 前 | 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 years 前 | 1

| 已接受