
Dani Péter
Followers: 0 Following: 0
Statistics
0 Problems
442 Solutions
RANK
N/A
of 297.922
REPUTATION
N/A
CONTRIBUTIONS
0 Questions
0 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
0
RANK
of 20.504
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
Determine given vector is even or odd
Find the numbers of the input vector is odd or even then replace even with 1 and odd with 0 Example x = [ 3 3 4 6 1] ...
bijna 6 jaar ago
Solved
Determine whether the number is multiple of 3 or not
Let a=6 and as 6 = 2*3 which means 6 is multiple of 3; return true if a is multiple of 3,otherwise false.
bijna 6 jaar ago
Solved
Find 10's complement
Find 10's complement of a given number. An example is <http://electrical4u.com/9s-complement-and-10s-complement/ shown here>.
bijna 6 jaar ago
Solved
calculate the tangent of angle in radians
Calculate the tangent of angle in degrees
bijna 6 jaar ago
Solved
vectors counting by 5
Create a vector with numbers from x_min to x_max in increments of 5.
bijna 6 jaar ago
Solved
determine the sum of the squares
if x = 4, the solution will be: y = 1^2+2^2+3^2+4^2=1+4+9+16 = 30.
bijna 6 jaar ago
Solved
Find x in provided equation!
x^2-2*x+1=0 This polynomial can be expressed by using each term's coefficients, such as [1 -2 1]. Using the polynomial ...
bijna 6 jaar ago
Solved
Replace Negative(-) by 0 and positive by 1
In a given Matrix Replace all element having *Negative sign with 0* and *Positive elements with 1* .
bijna 6 jaar ago
Solved
Find minimum and maximum elements of an array
For a given array find minimum and maximum elements of an array and store minimum value in first index of output and maximum in ...
bijna 6 jaar ago
Solved
Calculate Alcohol By Volume with Original and Final Gravity
Given an initial gravity of un-fermented wort (OG) and a final gravity of fermented wort (FG), better known as beer, it is possi...
bijna 6 jaar ago
Solved
Let's get back to school, and create multiplication tables
For a given range, create multiplication tables. (start is always < endno) Example start = 17 endno = 19 Then, ...
bijna 6 jaar ago
Solved
Matrix multiplication
Multiply two incoming matrices via matrix multiplication
bijna 6 jaar ago
Solved
Feeling lucky?
Guess which number Cody is thinking (1 to 10)? (This is a game of luck more than skill. Good luck!)
bijna 6 jaar ago
Solved
Find the square of the sum of the digits of a number
If a number (n) is provided as an input, find the square of the sum of the digits of the number. Example If n = 21, the an...
bijna 6 jaar ago
Solved
Replace values under a limit
For a vector x and number n, the goal is to find every element of x inferior to n and replace it by n. Example x= [ 1 2 3...
bijna 6 jaar ago
Solved
Reverse the input
Given an input (n), produce an output in the reverse order with out using string variables or string function. Example x ...
bijna 6 jaar ago
Solved
Generate the Matrix!
Given n, generate the following matrix: a = [ n n-1 n-2 ... 2 1; n-1 n-1 n-2 ... 2 1; n-2 n-2 n-2 ... 2 1;...
bijna 6 jaar ago
Solved
Area of square
Find the area of a square whose diagonal length is given as x.
bijna 6 jaar ago
Solved
If you have matrix A, create matrix B using matrix A as an "element"
A = [1 2 3 4; 5 6 7 8] B = [1 2 3 4 1 2 3 4; 5 6 ...
bijna 6 jaar ago
Solved
Find the minimal value in N*N Matrix
Suppose that we have N by N matrix, we try to find the minimal value in that matrix. examples: Input A=[1 2 3 5 6;52 58 56 45...
bijna 6 jaar ago
Solved
find a specific element from an matrix
Find the element from matrix which is in 2nd row and 3rd column.
bijna 6 jaar ago
Solved
Is it prime?
Given a number, check whether it is prime or not. If prime output is true, otherwise false.
bijna 6 jaar ago
Solved
Create a Standard Size Vector
Given an input x, create a row vector y from 1 to x with 5 elements.
bijna 6 jaar ago
Solved
Generate the sum of Squares of the given number
|P(n) = 1^2 + 2^2 + ... + n^2| |P(1) = 1| |P(2) = 1 + 4 = 5;| |P(3) = 5 + 9 = 14;| |P(4) = 14 + 16 = 30;|
bijna 6 jaar ago
Solved
Sum the rows
Sum the rows of the given matrix. Example x = [ 1 2 3 4 ] y = [ 3 7 ]
bijna 6 jaar 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.
bijna 6 jaar ago