Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
aVec = [3.14 15 9 26];
bVec = [2.71;8;28;182];
ref = sqrt((aVec').^2+bVec.^2)
user = MyFunc();
assert(isequal(user,ref))
ref =
4.1477
17.0000
29.4109
183.8478
yVec =
4.1477
17.0000
29.4109
183.8478
|
2 | Pass |
%%
aRef = [3.14 15 9 26];
[yVec aVec] = MyFunc();
assert(isequal(aRef,aVec))
yVec =
4.1477
17.0000
29.4109
183.8478
|
3 | Pass |
%%
bRef = [2.71;8;28;182];
[yVec aVec bVec] = MyFunc();
assert(isequal(bRef,bVec))
yVec =
4.1477
17.0000
29.4109
183.8478
|
4106 Solvers
351 Solvers
546 Solvers
Simple equation: Annual salary
3779 Solvers
Sum of the Multiplication of Vectors
202 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!