Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
load patients.mat
Age(55) = 12;
name = string(LastName);
maxAge_correct = "Robinson";
assert(isequal(find_max_age(name,Age),maxAge_correct))
y =
"Robinson"
|
2 | Pass |
name = ["Renee" "Melanie" "Katrina" "Ethan"];
age = [23 27 19 13];
maxAge_correct = "Melanie";
assert(isequal(find_max_age(name,age),maxAge_correct))
y =
"Melanie"
|
Find the peak 3n+1 sequence value
1108 Solvers
686 Solvers
Program an exclusive OR operation with logical operators
639 Solvers
Back to basics - mean of corner elements of a matrix
297 Solvers
(Linear) Recurrence Equations - Generalised Fibonacci-like sequences
150 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!