Solved


Remove entire row and column in the matrix containing the input values
Remove the entire row and column from the matrix containing specific values. The specified value can be a scalar or a vector. Fo...

4 months ago

Solved


Column Removal (★★★)
(copy of prob 7) Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2...

4 months ago

Solved


Find x rows where the sum of the numbers is the maximum
Find x rows where the sum of the numbers is the maximum. For example: when x is 2 and m is 2 3 5 0 2 3 5 5 6 0 9 4 then y =...

4 months ago

Solved


Draw a '4' in a zero matrix!

4 months ago

Solved


Draw a '6' in a zero matrix!

4 months ago

Solved


Draw a '9' in a zero matrix!

4 months ago

Solved


Draw a '7' in a zero matrix!

4 months ago

Solved


Draw a '8' in a zero matrix!

4 months ago

Solved


Draw a '3' in a zero matrix!

4 months ago

Solved


Draw a '2' in a zero matrix!

4 months ago

Solved


Draw a '5' in a zero matrix!

4 months ago

Solved


Draw a '1' in a zero matrix!

4 months ago

Solved


Find Rows with Specift Properities
Delete rows with specific properites as following: Find rows that have a negative value in any element of the row and delete it...

4 months ago

Solved


Remove all the columns contains only zero
Remove the column from the matrix which has only zeros . Refer the Example below a= 1 0 3 0 23 0 56 0 1 ...

4 months ago

Solved


row removal
Consider a matrix and remove the first row of the matrix.

4 months ago

Solved


Remove a specific column with min value
Remove the column that contain the min value in the matrix? If you like the problem, please give it a like:)

4 months ago

Solved


Remove a specific row with min value
Remove the row that contain the min value in the matrix? If you like the problem, please give it a like:)

4 months ago

Solved


Remove a specific column with max value
Remove the column that contain the max value in the matrix? If you like the problem, please give it a like:)

4 months ago

Solved


Remove a specific row with max value
Remove the row that contain the max value in the matrix? If you like the problem, please like it :)

4 months ago

Solved


to the 2 all elements
to the 2 all elements

4 months ago

Solved


Find the max element of the array
Find the max element of the array

4 months ago

Solved


Square root
Given x (a matrix), give back another matrix, where all the elements are the square roots of x's elements.

4 months ago

Solved


the average value of the elements
Calculate the average value of the elements in the array

4 months ago

Solved


Double all elements in the array
Duplicate all elements in the array

4 months ago

Solved


calculate the length of matrix
input 1 array, calculate the length

4 months ago

Solved


Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <<https://i.imgu...

4 months ago

Solved


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

4 months ago

Solved


Return area of square
Side of square=input=a Area=output=b

4 months ago

Solved


Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.

4 months ago

Solved


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

4 months ago

Load more