JAYANTH BHIMAVARAPU
Followers: 0 Following: 0
Statistics
RANK
4 209
of 295 467
REPUTATION
12
CONTRIBUTIONS
0 Questions
11 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
2
RANK
of 20 234
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
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
mer än 6 år ago | 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...
mer än 6 år ago | 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 ...
mer än 6 år ago | 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...
mer än 6 år ago | 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
mer än 6 år ago | 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>
mer än 6 år ago | 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 ...
mer än 6 år ago | 0
| accepted
Solved
Calculate the Hamming distance between two strings
Inspired by a similar Cody problem found <http://www.mathworks.com/matlabcentral/cody/problems/93-calculate-the-levenshtein-dist...
mer än 6 år ago
Solved
Number of 1s in a binary string
Find the number of 1s in the given binary string. Example. If the input string is '1100101', the output is 4. If the input stri...
mer än 6 år ago
Solved
Reverse Calculator
Use this reverse calculator and give correct output Its simple, In my Reverse calculator if you press 0 it will be considered...
mer än 6 år ago
Solved
Basics: counting digits of a number irrespective of the sign
publish the number of digits in any input integer example: -23---->2
mer än 6 år ago
Solved
Write a function man that takes a row vector v and returns a matrix H as follows..
Write a function called man that takes a row vector v as an input and returns a matrix H whose first column consist of the eleme...
mer än 6 år ago
Solved
Create a square matrix of multiples
Given an input, N, output a matrix N x N with each row containing multiples of the first element of each row. This also applies...
mer än 6 år ago
Solved
Output any real number that is neither positive nor negative
Output any real number that is neither positive nor negative
mer än 6 år ago
Solved
Compare two input matrices
Check which input matrix has more elements. Return "1" if matrix A has more elements than matrix B. Otherwise return "0". Exa...
mer än 6 år ago
Solved
Solving Quadratic Equations (Version 1)
Quadratic equations have the form: ax^2 + bx + c = 0. Example: x^2 + 3x + 2 = 0, where a = 1, b = 3, and c = 2. The equation has...
mer än 6 år ago
Solved
Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...
mer än 6 år ago
Solved
Remove the positive integers.
Given array,x, remove all the positive numbers and display ouput as y. Example x=[1 -2 3 -4] , output is y=[-2 -4].
mer än 6 år ago
Solved
Matlab Basics - Switching Assignments
Switch assignments for variables x and y, for example start with x = 1 and y = 3 end with y = 1 and x = 3 Do NOT simply r...
mer än 6 år ago
Solved
Generate a NaN...on purpose
The goal is to create a function that will return a single "NaN" without using the nan function. I am interested to see how many...
mer än 6 år ago
Solved
Create matrix of replicated elements
Given an input element x, and the dimensions, (m, n) return a matrix of size m x n filled with element x. Example: Input: ...
mer än 6 år ago
Solved
04 - Scalar Equations 3
Define the variables a, b, and c: <<http://samle.dk/STTBDP/Assignment1_4-a.png>> <<http://samle.dk/STTBDP/Assignment1_4-b....
mer än 6 år ago
Solved
Find the hypotenuse
Given a and b (the two sides of a right-triangle), find c, the hypotenuse.
mer än 6 år ago
Solved
Pad zero between every adjacent values of the vector.
you are given a vector x. you have to make an output vector y with zeros padded between every adjacent values of x. e.g x: ...
mer än 6 år ago
Solved
Sum all integers from 1 to 2^x
Given a number x, your function must return the summation of all integers from 1 to 2^x.
mer än 6 år ago