Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%% test 1
x = magic(3);
y_correct = norm(x,'fro'); %16.8819
assert(isequal(myFrobeniusnorm(x),y_correct))
|
2 | Pass |
%% test 2
x = magic(4)
y_correct = norm(x,'fro'); % 38.6782;
assert(isequal(myFrobeniusnorm(x),y_correct))
x =
16 2 3 13
5 11 10 8
9 7 6 12
4 14 15 1
|
1309 Solvers
Increment a number, given its digits
562 Solvers
3972 Solvers
584 Solvers
How many trades represent all the profit?
520 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!