From ebf9c9e141556770978b3bcde7b8da39fb4950ca Mon Sep 17 00:00:00 2001 From: ZaellixA <axilleaz@protonmail.com> Date: Mon, 3 Feb 2025 14:44:17 +0000 Subject: [PATCH] Supress an argument check from printing result --- .../Array Processing/MATLAB/Functions/firstOrderDma.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Signal Processing/Array Processing/MATLAB/Functions/firstOrderDma.m b/Signal Processing/Array Processing/MATLAB/Functions/firstOrderDma.m index 30748f6..6cfb3a3 100644 --- a/Signal Processing/Array Processing/MATLAB/Functions/firstOrderDma.m +++ b/Signal Processing/Array Processing/MATLAB/Functions/firstOrderDma.m @@ -3,7 +3,7 @@ % Author: Achilles Kappis % e-mail: axilleaz@protonmail.com % -% Date: 27/01/2025 (DD/MM/YYYY) +% Date: 02/02/2025 (DD/MM/YYYY) % % Copyright: MIT % -------------------------------------------------- @@ -124,7 +124,7 @@ function [h, output] = firstOrderDma(freq, d, pPattern, beta, input) "Dipole", "Figure-of-Eight", ... "Cardioid", "Cardio", ... "Hypercardioid", "Hyper", "Hypercardoid2d", "Hyper2d", "Hypercardoid3d", "Hyper3d", ... - "Supercardioid", "Super", "Supercardoid2d", "Super2d", "Supercardoid3d", "Super3d"]) + "Supercardioid", "Super", "Supercardoid2d", "Super2d", "Supercardoid3d", "Super3d"]); elseif isnumeric(pPattern) validateattributes(pPattern, {'numeric'}, {'scalar', 'real', 'nonnan', 'finite', 'nonempty'}, mfilename, 'Angle of null', 3); end -- GitLab