Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
s1 = [1 2 3 4 5];
s2 = [5 4 3 2];
s3_correct = [1 2 3 4 5 4 3 2];
assert(isequal(overlap(s1,s2),s3_correct))
|
2 | Pass |
s1 = [1 0 1 7 7 7 6];
s2 = [1 0 1 0 1];
s3_correct = [1 0 1 0 1 7 7 7 6];
assert(isequal(overlap(s1,s2),s3_correct))
|
3 | Pass |
s1 = [3 1 4 1 5 9 2 6 5 3 5];
s2 = [9 2 6 5];
s3_correct = [3 1 4 1 5 9 2 6 5 3 5];
assert(isequal(overlap(s1,s2),s3_correct))
|
4 | Pass |
s1 = 1:100;
s2 = [50 51];
s3_correct = s1;
assert(isequal(overlap(s1,s2),s3_correct))
|
5 | Pass |
s1 = 90:10:200;
s2 = 10:10:120;
s3_correct = 10:10:200;
assert(isequal(overlap(s1,s2),s3_correct))
[Warning: This concatenation operation includes an empty array with an incorrect number of rows.
Concatenation including empty arrays will require all arrays to have the same number of rows in a future release.]
[> In overlap (line 35)
In ScoringEngineTestPoint5 (line 4)
In solutionTest (line 11)
In matlab.unittest.internal.executeCodeBlock (line 11)
In matlab.unittest.internal.ScriptTestCaseProvider/evaluateTestSection (line 134)
In matlab.unittest.internal.ScriptTestCaseProvider/runTestSection (line 128)
In matlab.unittest.internal.ScriptTestCaseProvider>@(testCase)provider.runTestSection(testCase) (line 94)
In matlab.unittest.FunctionTestCase/test (line 98)
In matlab.unittest.TestRunner/evaluateMethodCore (line 854)
In matlab.unittest.TestRunner/evaluateMethod (line 1160)
In matlab.unittest.TestRunner/invokeTestContentOperatorMethod_ (line 908)
In matlab.unittest.plugins.TestRunnerPlugin/evaluateMethod (line 655)
In scoringengine.OutputPlugin/evaluateMethod
In matlab.unittest.plugins.TestRunnerPlugin/invokeTestContentOperatorMethod_ (line 686)
In matlab.unittest.plugins.TestRunnerPlugin/evaluateMethod (line 655)
In scoringengine.FiguresPlugin/evaluateMethod
In matlab.unittest.plugins.TestRunnerPlugin/invokeTestContentOperatorMethod_ (line 686)
In matlab.unittest.TestRunner/evaluateMethodOnPlugins (line 758)
In matlab.unittest.TestRunner/evaluateMethodsOnTestContent (line 796)
In matlab.unittest.TestRunner/runTestMethod (line 1156)
In matlab.unittest.TestRunner/invokeTestContentOperatorMethod_ (line 908)
In matlab.unittest.plugins.TestRunnerPlugin/runTestMethod (line 609)
In scoringengine.OutputPlugin/runTestMethod
In matlab.unittest.plugins.TestRunnerPlugin/invokeTestContentOperatorMethod_ (line 686)
In matlab.unittest.plugins.TestRunnerPlugin/runTestMethod (line 609)
In scoringengine.FiguresPlugin/runTestMethod
In matlab.unittest.plugins.TestRunnerPlugin/invokeTestContentOperatorMethod_ (line 686)
In matlab.unittest.TestRunner/evaluateMethodOnPlugins (line 758)
In matlab.unittest.TestRunner/runTest (line 1103)
In matlab.unittest.TestRunner/repeatTest (line 485)
In matlab.unittest.TestRunner/runSharedTestCase (line 441)
In matlab.unittest.TestRunner/runTestClass (line 1013)
In matlab.unittest.TestRunner/invokeTestContentOperatorMethod_ (line 908)
In matlab.unittest.TestRunner/evaluateMethodOnPlugins (line 758)
In matlab.unittest.TestRunner/runTestSuite (line 950)
In matlab.unittest.TestRunner/invokeTestContentOperatorMethod_ (line 908)
In matlab.unittest.plugins.TestRunnerPlugin/runTestSuite (line 226)
In scoringengine.OutputPlugin/runTestSuite
In matlab.unittest.plugins.TestRunnerPlugin/invokeTestContentOperatorMethod_ (line 686)
In matlab.unittest.plugins.TestRunnerPlugin/runTestSuite (line 226)
In scoringengine.FiguresPlugin/runTestSuite
In matlab.unittest.plugins.TestRunnerPlugin/invokeTestContentOperatorMethod_ (line 686)
In matlab.unittest.plugins.TestRunnerPlugin/runTestSuite (line 226)
In matlab.unittest.plugins.DiagnosticsRecordingPlugin/runTestSuite (line 204)
In matlab.unittest.plugins.TestRunnerPlugin/invokeTestContentOperatorMethod_ (line 686)
In matlab.unittest.TestRunner/evaluateMethodOnPlugins (line 758)
In matlab.unittest.TestRunner/doRun (line 414)
In matlab.unittest.TestRunner/run (line 293)
In scoringengine.verifyCode
In scoringengine.verifyCode
In connector.internal.fevalMatlab
In connector.internal.fevalJSON
]
|
2240 Solvers
895 Solvers
2538 Solvers
Fahrenheit to Celsius converter
358 Solvers
227 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!