Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
wage = 10;
salary_correct = wage * 40 * 50;
assert(isequal(ComputeSalary(wage),salary_correct))
|
2 | Pass |
%%
wage = 30;
salary_correct = wage * 40 * 50;
assert(isequal(ComputeSalary(wage),salary_correct))
|
3 | Pass |
%%
wage = 12.50;
salary_correct = wage * 40 * 50;
assert(isequal(ComputeSalary(wage),salary_correct))
|
Sort a list of complex numbers based on far they are from the origin.
4327 Solvers
Back to basics 17 - white space
245 Solvers
Compute a dot product of two vectors x and y
750 Solvers
Find the maximum number of decimal places in a set of numbers
734 Solvers
739 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!