Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
Y = 2e5;
S = 'kN/m^2';
y_correct = 2e8;
assert(isequal(convert_young(Y,S),y_correct))
ans =
200000000
|
2 | Pass |
%%
Y = 2e5;
S = 'N/m^2';
y_correct = 2e11;
assert(isequal(convert_young(Y,S),y_correct))
ans =
2.0000e+11
|
3 | Pass |
%%
Y = 2e5;
S = 'kN/mm^2';
y_correct = 2e2;
assert(isequal(convert_young(Y,S),y_correct))
ans =
200
|
4 | Pass |
%%
Y = 2e5;
S = 'N/mm^2';
y_correct = 2e5;
assert(isequal(convert_young(Y,S),y_correct))
Y =
200000
|
5 | Pass |
%%
Y = 2e5;
S = 'kN/cm^2';
y_correct = 2e4;
assert(isequal(convert_young(Y,S),y_correct))
ans =
20000
|
Is my wife right? Now with even more wrong husband
1241 Solvers
3968 Solvers
Getting the indices from a matrice
360 Solvers
2538 Solvers
Basics: Divide integers to get integer outputs in all cases
111 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!