Files
imdd_silas/Tests/04_DSP/Sequence Detection/MLSE_viterbi_test.m
2026-03-12 17:26:13 +01:00

12 lines
297 B
Matlab

classdef MLSE_viterbi_test < matlab.unittest.TestCase
% Test class for MLSE_viterbi
methods (Test)
function testExample(testCase)
% Example test case for MLSE_viterbi
% Add your test code here
testCase.verifyTrue(true);
end
end
end