![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/26491929_1652270417036_DEF.jpg)
Ganesh
MathWorks
Followers: 0 Following: 0
I am an Associate Product Engineer Intern, working with MathWorks. I work with development and providing support to the best of my knowledge within the MathWorks Community.
Statistics
RANK
11,483
of 297,046
REPUTATION
4
CONTRIBUTIONS
0 Questions
2 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
0
RANK
of 20,422
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
Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the numbers. Otherwise return false. Example...
2 years ago
Solved
Remove all the consonants
Remove all the consonants in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill'; Output s2 is 'a ...
2 years ago
Solved
Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...
2 years ago
Solved
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...
2 years ago
Solved
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...
2 years ago
Solved
Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Examp...
2 years 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:...
2 years ago
For Loop How to use previous calculated value in next iteration
Hi @Iris Willaert, This is something that you can do. PercentageIntervalTimes = zeros(length(Time)); PercentageIntervalTimes(...
2 years ago | 0
plotting using if and for loop
Hi @mhya k, The issue seems to be 3 things. a) The elements aren't dot squared(line 10) b) y1, and y2 are integers but are ...
2 years ago | 0
| accepted