Deepak Kumar
Followers: 0 Following: 0
Statistics
RANK
3.078
of 295.569
REPUTATION
18
CONTRIBUTIONS
0 Questions
11 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
2
RANK
of 20.247
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Solved
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...
meer dan 4 jaar ago
Solved
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:...
meer dan 4 jaar ago
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...
bijna 5 jaar ago | 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...
bijna 5 jaar ago | 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...
bijna 5 jaar ago | 0
| accepted
S-parameters peaks and bandwidth
Can you try to rename your script file (findpeaks.m) and check if it resolves your issue ?
bijna 5 jaar ago | 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 ...
bijna 5 jaar ago | 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...
bijna 5 jaar ago | 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...
ongeveer 5 jaar ago | 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...
ongeveer 5 jaar ago | 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...
ongeveer 5 jaar ago | 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 ...
ongeveer 5 jaar ago | 1
| accepted
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 ...
ongeveer 5 jaar ago | 1
| accepted