Solved


Matrix multiplication
Multiply two incoming matrices via matrix multiplication

6 years ago

Solved


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

6 years ago

Solved


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

6 years ago

Solved


Which quadrant?
Given a complex number, output quadrant 'I' 'II' 'III' or 'IV' | II | I | ...

6 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...

6 years ago

Solved


What's Your BMI?
Find the body mass index. For reference, please refer to Wikipedia here: <http://en.wikipedia.org/wiki/Body_mass_index body ...

6 years ago

Solved


Create a Multiplication table matrix...
Create a product table in this format: P = [ 1 2 3 4 5; 2 4 6 8 10; 3 6 9 12 15; 4 8 12 1...

6 years ago

Solved


Display negative numbers
Given array,x, display all the negative numbers and display output as y. Example x=[1 -2 3 -4] , output is y=[-2 -4].

6 years ago

Solved


Create a constant offset.
Add a constant offset to an array. Example a = [1 3 5 9] offset = 2 y = [3 5 7 11]

6 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.

6 years ago

Solved


Matrix Max Finder
Output the maximum value in a matrix

6 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)

6 years ago

Solved


Count decimal digits of a number
* Given an integer number you have to return the number of its digits. * For example 248 has 3 digits and 1589 has 4 digits ...

6 years ago

Solved


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

6 years ago

Solved


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

6 years ago

Solved


Number of primes
Count the number of primes less than 'n'.

6 years ago

Solved


Find the volume of cone
Find the volume of cone, when given radius(r) and height(h).

6 years ago

Solved


Insert zeros II

6 years ago

Solved


Insert zeros

6 years ago

Solved


NaN

6 years ago

Solved


Sudoku

6 years ago

Solved


Matrix operation

6 years ago

Solved


Card games

6 years ago

Solved


Swap rows

6 years ago

Solved


Swap

6 years ago

Solved


delta x

6 years ago

Solved


Test

6 years ago

Solved


Matlab Basics II - Free Fall
An object freely falling from rest under gravity covers a distance x given by: x = 1/2 gt^2 write a function that calculat...

6 years ago

Solved


Factorial

6 years ago

Load more