JAYANTH BHIMAVARAPU
自 2018 起处于活动状态
Followers: 0 Following: 0
Feeds
已回答
How could I create a sliding window of 300 seconds, with an overlap of 60 seconds?
for i = 0:60:length(ECG)-300 temp = ECG(i+1 : 300 + i) end
How could I create a sliding window of 300 seconds, with an overlap of 60 seconds?
for i = 0:60:length(ECG)-300 temp = ECG(i+1 : 300 + i) end
6 years 前 | 1
已回答
How to use the existing matlab program to build a GUI?
For creating a GUI you have to use command "guide". Hope this video lets you get started: <https://www.youtube.com/watch?v=ru...
How to use the existing matlab program to build a GUI?
For creating a GUI you have to use command "guide". Hope this video lets you get started: <https://www.youtube.com/watch?v=ru...
6 years 前 | 0
已回答
matlab code of some mobile wsn routing protocols
Will this work? <https://www.mathworks.com/matlabcentral/fileexchange/64600-wireless-sensor-network-deployment-using-matlab WSN ...
matlab code of some mobile wsn routing protocols
Will this work? <https://www.mathworks.com/matlabcentral/fileexchange/64600-wireless-sensor-network-deployment-using-matlab WSN ...
6 years 前 | 0
已回答
below is a program that i am using to derive idf curves .suppose i have the code for plotting idf curve for one particular grid or place but now i need to plot 10 idf curves using that code simultaneously. i introduced a outer for loop will it do?
Try to use subplot of MATLAB to plot different plots in a form of grid: <https://in.mathworks.com/help/matlab/ref/subplot.html S...
below is a program that i am using to derive idf curves .suppose i have the code for plotting idf curve for one particular grid or place but now i need to plot 10 idf curves using that code simultaneously. i introduced a outer for loop will it do?
Try to use subplot of MATLAB to plot different plots in a form of grid: <https://in.mathworks.com/help/matlab/ref/subplot.html S...
6 years 前 | 0
已回答
how to fill in zeros in index not used?
B = zeros(1,length); B(2) = 5; //Just initialize the vector with zeros(m,n) function and then feed the data as you want
how to fill in zeros in index not used?
B = zeros(1,length); B(2) = 5; //Just initialize the vector with zeros(m,n) function and then feed the data as you want
6 years 前 | 0
已回答
How can I calculate the area under the peaks for this data?
Have you tried this way: <https://in.mathworks.com/help/matlab/ref/area.html Finding area of 2D plot>
How can I calculate the area under the peaks for this data?
Have you tried this way: <https://in.mathworks.com/help/matlab/ref/area.html Finding area of 2D plot>
6 years 前 | 0
已回答
why am i getting this error ? what to do?
Replace datadir = 'C:\Users\AKASH\Pictures\works\**'; with datadir = 'C:\Users\AKASH\Pictures\works\**\'; and try again. But ...
why am i getting this error ? what to do?
Replace datadir = 'C:\Users\AKASH\Pictures\works\**'; with datadir = 'C:\Users\AKASH\Pictures\works\**\'; and try again. But ...
6 years 前 | 0
| 已接受
已回答
How to highlight the vertex (vertices) of a voronoi diagram?
You can find the vertices of voronoi diagram using this: from = [vx(1,:);vy(1,:)]; to = [vx(2,:);vy(2,:)]; The...
How to highlight the vertex (vertices) of a voronoi diagram?
You can find the vertices of voronoi diagram using this: from = [vx(1,:);vy(1,:)]; to = [vx(2,:);vy(2,:)]; The...
6 years 前 | 0
已回答
Fitting data with broekn stick regression
You can have a look at this solution: <https://www.mathworks.com/matlabcentral/answers/363167-broken-stick-regression-and-find...
Fitting data with broekn stick regression
You can have a look at this solution: <https://www.mathworks.com/matlabcentral/answers/363167-broken-stick-regression-and-find...
6 years 前 | 0
已回答
Usage of MATLAB/SIMULINK FOR FLIGHT RECORDERS
You can reach out to the Sales and Services team of MathWorks here: https://www.mathworks.com/company/aboutus/contact_us.ht...
Usage of MATLAB/SIMULINK FOR FLIGHT RECORDERS
You can reach out to the Sales and Services team of MathWorks here: https://www.mathworks.com/company/aboutus/contact_us.ht...
6 years 前 | 0
| 已接受
已回答
after writing my script and running it, it is only returning the file name with no error meaage. What is the problem here?
Generally this message appears when we try to run an empty script or a complete script which is not printing anything In your ca...
after writing my script and running it, it is only returning the file name with no error meaage. What is the problem here?
Generally this message appears when we try to run an empty script or a complete script which is not printing anything In your ca...
6 years 前 | 1