Description:
Determine if the elements of an input array are triangle numbers and return the result as an array with the same dimensions as the input.
Example:
Input = [ 1 2 3 ]; Output = [ 1 0 1 ];
Watch out! Martix size!
This works in Matlab but not here? It fails on Test 3, but when I use the same value of x and the same function in Matlab it works...
Your output y is a row vector (or scalar), but in 3'rd test it should be a column vector. Predefine y first with the same size as x.
good solution
239 Solvers
Return the first and last character of a string
1662 Solvers
Set the array elements whose value is 13 to 0
753 Solvers
261 Solvers
Solving Quadratic Equations (Version 1)
361 Solvers