Vinay kumar Reddy
Followers: 0 Following: 0
Graduated from SRM University ,Chennai.
Did 32 Projects in MATLAB.
Likes Wireless Communication , Image Processing.
Statistik
RANG
170.108
of 295.467
REPUTATION
0
BEITRÄGE
3 Fragen
0 Antworten
ANTWORTZUSTIMMUNG
66.67%
ERHALTENE STIMMEN
0
RANG
1.739 of 20.234
REPUTATION
1.053
DURCHSCHNITTLICHE BEWERTUNG
3.90
BEITRÄGE
4 Dateien
DOWNLOADS
8
ALL TIME DOWNLOADS
9849
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Frage
How to pass a structure variable from callback to other callback .
Help Needed. In a GUI M file I got a situation where I should pass a structure Variable form callback to callback. Here is...
fast 12 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
How do you search a file for a matching string?
Hi, I have a huge contacts list in a excel file which consists of following fields FirstName LastName UserID Emai...
fast 12 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How to extract data from a srting?
Hi, *I have this data as a single string * Physical Location (City):Virginia Manager of this associate:Donna Harding ...
fast 12 Jahre vor | 2 Antworten | 0
2
AntwortenGesendet
Eigen Face Recognition
Face Recognition using Eigen Method
etwa 12 Jahre vor | 3 Downloads |
Gesendet
Log-MAP and Max-Log MAP
Log-MAP is denoted as "Simplified MAP." Max-Log MAP is denoted as "MAX MAP."
etwa 12 Jahre vor | 1 Download |
Gelöst
Too mean-spirited
Find the mean of each consecutive pair of numbers in the input row vector. For example, x=[1 2 3] ----> y = [1.5 2.5] x=[1...
etwa 12 Jahre vor
Gelöst
Distance walked 1D
Suppose you go from position 7 to 10 to 6 to 4. Then you have walked 9 units of distance, since 7 to 10 is 3 units, 10 to 6 is 4...
etwa 12 Jahre vor
Gelöst
Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]
etwa 12 Jahre vor
Gelöst
Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...
etwa 12 Jahre vor
Gelöst
Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...
etwa 12 Jahre vor
Gelöst
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
etwa 12 Jahre vor
Gelöst
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...
etwa 12 Jahre vor
Gelöst
"mirror" matrix
Create n x 2n "mirror" matrix of this type: e.g. for n = 2 m = [1 2 2 1;1 2 2 1] e.g. for n = 3 m = [1 2 3 3 2 1...
etwa 12 Jahre vor
Gelöst
Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...
etwa 12 Jahre vor
Gelöst
Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...
etwa 12 Jahre vor
Gelöst
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:...
etwa 12 Jahre vor