Mentions légales du service

Skip to content
Snippets Groups Projects
Commit aa3d3c7f authored by hhakim's avatar hhakim
Browse files

Slightly modify unit test for matfaust.FaustFactory.fourier().

parent 244bdbab
No related branches found
No related tags found
No related merge requests found
Pipeline #833852 skipped
......@@ -180,7 +180,7 @@ classdef FaustFactoryTest < matlab.unittest.TestCase
fF = full(F);
fftI = fft(eye(2^n));
% this.verifyEqual(nnz(fH), numel(fH));
this.verifyEqual(norm(fF-fftI), 0, 'RelTol',0.0005);
this.verifyEqual(norm(fF-fftI), 0, 'AbsTol',10^-13);
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment