Solved


How to subtract?
* Imagine you need to subtract a few numbers using MATLAB. * You will not be using eval for this task. * Given two ASCII strin...

meer dan 6 jaar ago

Solved


Polarisation
You have n polarising filters stacked one on top of another, and you know each axis angle. How much light gets passed through th...

meer dan 6 jaar ago

Solved


ASCII Birthday Cake
Given an age and a name, give draw an ASCII birthday cake. For example, given the name "CODY" and the age 5, return a string wit...

meer dan 6 jaar ago

Solved


Write out numbers in words
Write out numbers in words ( range [0-9999] ) with British spelling rules. For example; * 1 > one * 56 > fifty-six * 100 >...

meer dan 6 jaar 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...

meer dan 6 jaar ago

Solved


String Delimination and Outputting
In this problem, take an incoming string and deliminate the string based on spaces. Output the first string in between the space...

meer dan 6 jaar 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...

meer dan 6 jaar ago

Solved


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

meer dan 6 jaar ago

Solved


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

meer dan 6 jaar ago

Solved


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

meer dan 6 jaar 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).

meer dan 6 jaar 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.

meer dan 6 jaar ago

Solved


Component area
Find the area of the component below, all measurements are in mm <<https://image.ibb.co/hocruF/Component.png>>

meer dan 6 jaar ago

Solved


Make one vector from two others
You are given two vectors of equal length. Your task is to create a MATLAB script that will repeat all of the values in the fir...

meer dan 6 jaar ago

Solved


Rewrite setdiff to account for non-unique values
Setdiff(a,b) is a function that will remove all values of b from a. Sometimes, you need this function to do a little bit extra,...

meer dan 6 jaar ago

Solved


Matrix Max Finder
Output the maximum value in a matrix

meer dan 6 jaar ago

Solved


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

meer dan 6 jaar ago

Solved


Sum two matrices
Take two incoming matrices, and sum them

meer dan 6 jaar ago

Solved


Matrix multiplication
Multiply two incoming matrices via matrix multiplication

meer dan 6 jaar ago

Solved


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

meer dan 6 jaar ago

Solved


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

meer dan 6 jaar ago

Solved


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

meer dan 6 jaar ago

Solved


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

meer dan 6 jaar 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...

meer dan 6 jaar ago

Solved


Compute average gain for some bets.
Given a vector containg the odds of some events in decimal format (e.g., |odds=[1.3 2.5 1.5]| ) and a vector of the same dimensi...

meer dan 6 jaar ago

Solved


sum all digits
input = 123456789, output = 1+2+3+4+5+6+7+8+9 = 45

meer dan 6 jaar ago

Solved


Given a number N, find the smallest prime P>N
Given a number N, find the smallest prime P greater than N. For example: If N=10 then P=11. If N=13 then P=17.

meer dan 6 jaar ago

Solved


concatenate the elements
you should concatenate the elements of a matrix in one dimensional array, for example if the input is A = [1 2 3; 4 5 6; 7 ...

meer dan 6 jaar ago

Solved


Given a square and a circle, please decide whether the square covers more area.
You know the side of a square and the diameter of a circle, please decide whether the square covers more area.

meer dan 6 jaar ago

Solved


Generate one sample of uniform random numbers between -pi and +pi
Generate one sample of uniform random numbers between -pi and +pi.

meer dan 6 jaar ago

Load more