⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mtimes.m

📁 Matsig is an object-oriented signal class library for MATLAB 6.5 and later. It implements a signal c
💻 M
字号:
function c = mtimes(a,b)% overloading of operator *% $Id: mtimes.m 3 2004-02-04 12:57:04Z mairas $if isa(a,'spectrum') & isa(b,'spectrum')  error('Matrix multiplication of two spectra not supported.');elseif isa(a,'spectrum') & ~isa(b,'spectrum')  c = spectrum(a.s * b(:)', a.frequency);elseif ~isa(a,'spectrum') & isa(b,'spectrum')  c = spectrum(a(:)' * b.s, b.frequency);else  error('Invalid operands in multiplication.');end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -