Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%% Test 1
u = 3;
v= 0.05;
y_correct = 1020;
assert(isequal(your_fcn_name(u,v),y_correct));
ans =
1020
|
2 | Pass |
%% Test 2
u=30;
v = 0.01;
y_correct = [5100 4800];
assert(isequal(your_fcn_name(u,v),y_correct));
|
3 | Pass |
%% Test 3
u=3;
v = 0.03;
y_correct = 1700;
assert(isequal(your_fcn_name(u,v),y_correct));
|
Given two strings, find the maximum overlap
461 Solvers
Test if a Number is a Palindrome without using any String Operations
181 Solvers
Arrange Vector in descending order
4079 Solvers
Determine if input is a perfect number
145 Solvers
Celsius to Fahrenheit converter
389 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!