Solved


UICBioE240 problem 1.5
Find the size of the matrix, then multiply both values by 10 and make it into a column vector. So if A = [ 1 2 3; ...

7 years ago

Solved


UICBioE240 problem 1.18
exp(pi/5*i) and exp(pi/5i). Is there any difference in result? Write yes or no as a string.

7 years ago

Solved


UICBioE240 problem 1.8
Given a list of grades in a class, write a script that gives the 2nd highest grade in the class and the average for the class. ...

7 years ago

Solved


Matrix Ax=B problem
Take a incoming A and B vector, and solve for x

7 years ago

Solved


Matrix Generation from Vector Multiplication
Output the matrix generated from multiplying two vectors together

7 years ago

Solved


Sum two matrices
Take two incoming matrices, and sum them

7 years ago

Solved


Automatic String Editing
In this function, you will take an incoming string, and output the same string with each character one letter later in the alpha...

7 years ago

Solved


Simple String Concatenation
This is a simple problem involving taking two incoming strings, and outputting the concatenated string with a space separating t...

7 years ago

Solved


More Simple String Concatenation
Take the first string input, reverse the order of the string from the end to beginning (i.e. apple becomes elppa), add a space a...

7 years ago

Solved


Matrix Max Finder
Output the maximum value in a matrix

7 years ago

Solved


Simple Vector Addition
Take two incoming vectors and output the sum of the two vectors

7 years ago

Solved


Resizing Matrices
Take an 4x3 matrix, and resize it to a 2x6 matrix

7 years ago

Solved


Matrix multiplication
Multiply two incoming matrices via matrix multiplication

7 years ago

Solved


Replace 0 indices in array with 1's
Take a incoming vector, and replace 0's with ones

7 years ago

Solved


Find the sum of the largest two elements in a vector
With this one, you have to find the two largest elements in a vector and output the sum of those numbers.

7 years ago

Solved


Vector Element Multiplication
Take two incoming vectors, and output the element wise multiplication of the vectors.

7 years ago

Solved


Find the index of the lowest number in a matrix
Take a matrix, and find the [row cal] index of the lowest number

7 years ago

Solved


Check if inputted variable is a string or a number
Check if a inputted variable is a number or a string, given a string input (i.e. '1' is 1 and thus a number, 'a' is a string).

7 years ago

Solved


Vector indexing: lower than mean
Find all values in a vector lower than the mean of the vector

7 years ago

Solved


Matrix element wise multiplication
Take two incoming vectors, and multiply them element wise

7 years ago

Solved


Find the mean of two vectors
Take two vectors, and output the mean of them (bonus if you don't use the in-built mean function)

7 years ago

Solved


Determine whether the input is divisible by 3 as well as 5
If the input is divisible by 3 as well as 5 then the output should be 'true' otherwise 'false'

7 years ago

Solved


multiply an array by its position number
You have given an array. Multiply an array by its position number

7 years ago

Solved


Find remainder when x is divided by 3
Find remainder when x is divided by 3

7 years ago

Solved


find the mean of all elements in a matrix
given a matrix, just find the mean of all elements in the matrix

7 years ago

Solved


Calculating selling price
Cost of a Product is $x What should be the selling price if you want to gain 10%?

7 years ago

Solved


find a specific element from an matrix
Find the element from matrix which is in 2nd row and 3rd column.

7 years ago

Solved


Halder function
Find the halder function value of a number

7 years ago

Solved


Find the last digit
FInd the last digit of a given number. Given number is the input and output should be the last digit of that number.

7 years ago

Solved


modulus of a number
find the modulus of a given number

7 years ago

Load more