blob: d3a51b28891c8f2949e85a2ac8881776389d9fb2 [file] [log] [blame]
% Copyright ©2016 The gonum Authors. All rights reserved.
% Use of this source code is governed by a BSD-style
% license that can be found in the LICENSE file.
function PrintGoSlice(a)
fprintf('[]float64{')
for i = 1:length(a)
fprintf('%1.16e, ',a(i))
end
fprintf('}\n')
end