Mentions légales du service

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

Overload in matfaust.Faust the functions reshape, cat, horzcat, vertcat only...

Overload in matfaust.Faust the functions reshape, cat, horzcat, vertcat only for blocking their utilization clearly.
parent 964f4970
Branches
No related tags found
No related merge requests found
Pipeline #833853 skipped
...@@ -518,7 +518,7 @@ EXCLUDE_SYMLINKS = NO ...@@ -518,7 +518,7 @@ EXCLUDE_SYMLINKS = NO
EXCLUDE_PATTERNS = *faust_MatDense_gpu.h *faust_MatSparse_gpu.h EXCLUDE_PATTERNS = *faust_MatDense_gpu.h *faust_MatSparse_gpu.h
EXCLUDE_SYMBOLS = mtimes_trans subsasgn get_factor_nonopt EXCLUDE_SYMBOLS = mtimes_trans subsasgn get_factor_nonopt horzcat cat vertcat reshape
# The EXAMPLE_PATH tag can be used to specify one or more files or # The EXAMPLE_PATH tag can be used to specify one or more files or
# directories that contain example code fragments that are included (see # directories that contain example code fragments that are included (see
......
...@@ -1344,6 +1344,21 @@ classdef Faust ...@@ -1344,6 +1344,21 @@ classdef Faust
end end
end end
function C = cat(varargin)
error('Function not implemented for Faust class');
end
function HC = horzcat(varargin)
error('Function not implemented for Faust class');
end
function VC = vertcat(varargin)
error('Function not implemented for Faust class');
end
function RF = reshape(varargin)
error('Function not implemented for Faust class');
end
end end
methods(Static) methods(Static)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment