Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/test/audio/process_test.m
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ function test_result_print(t, testverbose, testacronym, test)
%% FIXME: get unique string to keep all the incremental logs

for i = 1:length(test.ph)
title(test.ph(i), tstr);
title(test.ph(i), tstr, 'Interpreter', 'none');
end

for i = 1:length(test.fh)
Expand Down
4 changes: 2 additions & 2 deletions tools/test/audio/src_test.m
Original file line number Diff line number Diff line change
Expand Up @@ -486,9 +486,9 @@
function src_test_result_print(t, testverbose, testacronym, ph)
tstr = sprintf('%s SRC %d, %d', testverbose, t.fs1, t.fs2);
if nargin > 3 && ~isempty(ph)
title(ph, tstr);
title(ph, tstr, 'Interpreter', 'none');
else
title(tstr);
title(tstr, 'Interpreter', 'none');
end
pfn = sprintf('plots/%s_src_%d_%d.png', testacronym, t.fs1, t.fs2);
print(pfn, '-dpng');
Expand Down
2 changes: 1 addition & 1 deletion tools/test/audio/tdfb_test.m
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ function tdfb_test(xtrun)
hold off
grid on;
legend('ch1 in','ch1 out');
title(tstr);
title(tstr, 'Interpreter', 'none');
end

end
Expand Down