photo

JAYANTH BHIMAVARAPU


Aktiv seit 2018

Followers: 0   Following: 0

Statistik

All
MATLAB Answers

0 Fragen
11 Antworten

Cody

0 Probleme
259 Lösungen

RANG
4.150
of 300.851

REPUTATION
12

BEITRÄGE
0 Fragen
11 Antworten

ANTWORTZUSTIMMUNG
0.00%

ERHALTENE STIMMEN
2

RANG
 of 21.094

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG
816
of 171.294

BEITRÄGE
0 Probleme
259 Lösungen

PUNKTESTAND
2.670

ANZAHL DER ABZEICHEN
1

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • 3 Month Streak
  • Knowledgeable Level 1
  • Revival Level 1
  • First Answer
  • Solver

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
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

mehr als 7 Jahre vor | 1

Beantwortet
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...

mehr als 7 Jahre vor | 0

Beantwortet
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 ...

mehr als 7 Jahre vor | 0

Beantwortet
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...

mehr als 7 Jahre vor | 0

Beantwortet
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

mehr als 7 Jahre vor | 0

Beantwortet
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>

mehr als 7 Jahre vor | 0

Beantwortet
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 ...

mehr als 7 Jahre vor | 0

| akzeptiert

Gelöst


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...

mehr als 7 Jahre vor

Gelöst


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...

mehr als 7 Jahre vor

Gelöst


Reverse Calculator
Use this reverse calculator and give correct output Its simple, In my Reverse calculator if you press 0 it will be considered...

mehr als 7 Jahre vor

Gelöst


Basics: counting digits of a number irrespective of the sign
publish the number of digits in any input integer example: -23---->2

mehr als 7 Jahre vor

Gelöst


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...

mehr als 7 Jahre vor

Gelöst


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...

mehr als 7 Jahre vor

Gelöst


Output any real number that is neither positive nor negative
Output any real number that is neither positive nor negative

mehr als 7 Jahre vor

Gelöst


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...

mehr als 7 Jahre vor

Gelöst


Max of a Vector
Write a function to return the max of a vector

mehr als 7 Jahre vor

Gelöst


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...

mehr als 7 Jahre vor

Gelöst


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...

mehr als 7 Jahre vor

Gelöst


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].

mehr als 7 Jahre vor

Gelöst


Calculate volume of box
Calculate the volume of box,hiven its sides

mehr als 7 Jahre vor

Gelöst


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...

mehr als 7 Jahre vor

Gelöst


length of a vector
Find twice the length of a given vector.

mehr als 7 Jahre vor

Gelöst


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...

mehr als 7 Jahre vor

Gelöst


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: ...

mehr als 7 Jahre vor

Gelöst


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....

mehr als 7 Jahre vor

Gelöst


Find the hypotenuse
Given a and b (the two sides of a right-triangle), find c, the hypotenuse.

mehr als 7 Jahre vor

Gelöst


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

mehr als 7 Jahre vor

Gelöst


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: ...

mehr als 7 Jahre vor

Gelöst


frame of the matrix
Given the matrix M, return M without the external frame.

mehr als 7 Jahre vor

Gelöst


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.

mehr als 7 Jahre vor

Mehr laden