Statistics
0 Problems
1281 Solutions
RANK
N/A
of 297,105
REPUTATION
N/A
CONTRIBUTIONS
0 Questions
0 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
0
RANK
of 20,417
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
Satellite Orbit Altitude
*Satellite and Space Engineering - Problem #4* _This is part of a series of problems looking at topics in satellite and space...
4 years ago
Solved
Find the next binary palindrome number
We all know, a *palindrome* is nothing but a number or character which remains the same after the forward or backward alteration...
4 years ago
Solved
Calculate the volume of a cone
Calculate the volume of a cone given an array containing one column of radii and one column of the height of the cone. * Reme...
4 years ago
Solved
Times 6
Try out this test problem first. Given the variable x as your input, multiply it by six and put the result in y. Examples:...
4 years ago
Solved
Times 7
Try out this test problem first. Given the variable x as your input, multiply it by seven and put the result in y. Example...
4 years ago
Solved
Times 8
Try out this test problem first. Given the variable x as your input, multiply it by eight and put the result in y. Example...
4 years ago
Solved
Times 9
Try out this test problem first. Given the variable x as your input, multiply it by nine and put the result in y. Examples...
4 years ago
Solved
Times 10
Try out this test problem first. Given the variable x as your input, multiply it by ten and put the result in y. Examples:...
4 years ago
Solved
Times 11
Try out this test problem first. Given the variable x as your input, multiply it by eleven and put the result in y. Exampl...
4 years ago
Solved
Times 12
Try out this test problem first. Given the variable x as your input, multiply it by twelve and put the result in y. Exampl...
4 years ago
Solved
Times 20
Try out this test problem first. Given the variable x as your input, multiply it by ninety and put the result in y. Exampl...
4 years ago
Solved
Times 3
Try out this test problem first. Given the variable x as your input, multiply it by three and put the result in y. Example...
4 years ago
Solved
union without repitition
Let a = [9 9 9 9 9 9 8 8 8 8 7 7 7 6 6 6 5 5 4 2 1] b = [1 1 1 3 3 3 3 3 4 4 4 4 4 10 10 10] Output should be [9 8...
4 years ago
Solved
Create a Standard Size Vector
Given an input x, create a row vector y from 1 to x with 5 elements.
4 years ago
Solved
edge detection
write a function that gives the indexes of rising or falling edge x is a vector (assume it contains always at least one eleme...
4 years ago
Solved
Decide whether determinant is zero.
Given a 3 x 3 matrix, find the determinant. Let y = true if the determinant is zero, and let y = false if the determinant is no...
5 years ago
Solved
Equidistant numbers containing certain value in an interval
Given a lower and upper bound of an interval, distance between numbers, and one particular number from that interval, create an ...
5 years ago
Solved
Accessing elements on the diagonal
Access the diagonal elements of a matrix without 'diag' function
5 years ago
Solved
Square wave average calculation
Given its peak and duty cycle, calculate avg value of square wave
5 years ago
Solved
Function composition - harder
Write a function that accepts an arbitrary number of function handles f_1, f_2, ..., f_n and returns the composition h. That is,...
5 years ago
Solved
Create a square matrix of zeros of even order
Create a square matrix of zeros of even order
5 years ago
Solved
Print true if
all elements are larger than 5 a=[1 3 5 8 6]; b=[6 6 6 6 6]; function(a) should be false, and function(b) will be tru...
5 years ago
Solved
Reshape a Vector
Write a function that accept three inputs. The first one is a row vector S. The second and third arguments are m and n which de...
5 years ago
Solved
Find maximum value of a curve
Two vectors shall be already defined: - Input vector x (e.g. x = 0:1:10) - Result vector y (e.g. y = sin(x)) Create a n...
5 years ago
Solved
Figurate number triangle
Check whether the input matrix is a figurate number triangle: <http://mathworld.wolfram.com/FigurateNumberTriangle.html>
5 years ago
Solved
Subtract two positive numbers
Given a and b as a string, return b-a without using string to number conversion functions. a and b must to be a same size and b ...
5 years ago
Solved
Create Vector containing following elements
Create Vector containing following elements A=[pi eps NaN inf -inf flintmax];
5 years ago