Problem


NOT
If a not equal to zero, b = true, else, b = false.

1 month ago | 0 | 65 solvers

Solved


OR
If a greater than zero or c less than 10, b = true, else, b = false.

1 month ago

Problem


OR
If a greater than zero or c less than 10, b = true, else, b = false.

1 month ago | 0 | 65 solvers

Solved


AND
If a greater than 0 and n less than 10, b = true, else, b = false. (Checking a should be in one line by AND special sign in MAT...

1 month ago

Problem


AND
If a greater than 0 and n less than 10, b = true, else, b = false. (Checking a should be in one line by AND special sign in MAT...

1 month ago | 0 | 67 solvers

Solved


Nested If(s)
If a greater than zero, then check, if a = greater that 1 and less than 10, then b = true, else, b = false.

1 month ago

Problem


Nested If(s)
If a greater than zero, then check, if a = greater that 1 and less than 10, then b = true, else, b = false.

1 month ago | 0 | 67 solvers

Solved


If-Elseif-Else
If a more than zero, b = true, if a = zero , b = zero, else, b = false.

1 month ago

Problem


If-Elseif-Else
If a more than zero, b = true, if a = zero , b = zero, else, b = false.

1 month ago | 0 | 70 solvers

Solved


If-Else
If a more than zero, b = true, else, b = false.

1 month ago

Problem


If-Else
If a more than zero, b = true, else, b = false.

1 month ago | 0 | 72 solvers

Solved


If
If a more than zero, then b = true.

1 month ago

Problem


If
If a more than zero, then b = true.

1 month ago | 0 | 75 solvers

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.

1 month ago

Solved


Getting the indices from a vector
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to find the logical indices o...

1 month ago

Solved


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

1 month ago

Solved


Make a random, non-repeating vector.
This is a basic MATLAB operation. It is for instructional purposes. --- If you want to get a random permutation of integer...

2 months ago

Solved


Multiplying the Sums of Two Arrays
Get two arrays, add the values within the array up, and then multiply the two total values. [2,3]*[3,6] 5*18 90

2 months ago

Solved


Basic Physics X
Calculate the Kinetic Energy (KE) by Weight (w), Distanec (d), and Time (t) without Mass (m) or Speed (v).

2 months ago

Problem


Basic Physics X
Calculate the Kinetic Energy (KE) by Weight (w), Distanec (d), and Time (t) without Mass (m) or Speed (v).

2 months ago | 0 | 56 solvers

Solved


Basic Physics IX
Calculate the Kinetic Energy (KE) by Weight (w) instead of Mass (m).

2 months ago

Problem


Basic Physics IX
Calculate the Kinetic Energy (KE) by Weight (w) instead of Mass (m).

2 months ago | 0 | 54 solvers

Solved


Basic Physics VIII
Calculate the Mechanical Energy (ME) when the point is B.

2 months ago

Problem


Basic Physics VIII
Calculate the Mechanical Energy (ME) when the point is B.

2 months ago | 0 | 53 solvers

Solved


Basic Physics VII
Calculate the speed.

2 months ago

Problem


Basic Physics VII
Calculate the speed.

2 months ago | 0 | 54 solvers

Solved


Basic Physics VI
Fing the Kinetic Energy (KE) buy Distance (d) and Time (t) instead of Speed (v).

2 months ago

Problem


Basic Physics VI
Fing the Kinetic Energy (KE) buy Distance (d) and Time (t) instead of Speed (v).

2 months ago | 0 | 54 solvers

Solved


Square a Number
Given an input x, return y, which is equal to the square of x.

2 months ago

Solved


Find the Nth Root of a Given Number
Find the Nth root of a given number x. Examples x = 4096 n = 4 y = 8 x = 625 n = 5 y = 3.6239

2 months ago

Load more