├── LICENSE ├── README.md └── differential ├── first-order ├── firstOrderCardioid.m └── firstOrderDipole.m ├── mini-norm └── firstOrderMiniNorm.m ├── second-order ├── secondOrderCardioid.m ├── secondOrderDipole.m ├── secondOrderHypercardioid.m └── secondOrderSupercardioid.m ├── superdirective └── maxNulls.m ├── third-order └── thirdOrder.m └── utils ├── getSteeringVector.m └── my_polar.m /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwwt/microphoneArray/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwwt/microphoneArray/HEAD/README.md -------------------------------------------------------------------------------- /differential/first-order/firstOrderCardioid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwwt/microphoneArray/HEAD/differential/first-order/firstOrderCardioid.m -------------------------------------------------------------------------------- /differential/first-order/firstOrderDipole.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwwt/microphoneArray/HEAD/differential/first-order/firstOrderDipole.m -------------------------------------------------------------------------------- /differential/mini-norm/firstOrderMiniNorm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwwt/microphoneArray/HEAD/differential/mini-norm/firstOrderMiniNorm.m -------------------------------------------------------------------------------- /differential/second-order/secondOrderCardioid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwwt/microphoneArray/HEAD/differential/second-order/secondOrderCardioid.m -------------------------------------------------------------------------------- /differential/second-order/secondOrderDipole.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwwt/microphoneArray/HEAD/differential/second-order/secondOrderDipole.m -------------------------------------------------------------------------------- /differential/second-order/secondOrderHypercardioid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwwt/microphoneArray/HEAD/differential/second-order/secondOrderHypercardioid.m -------------------------------------------------------------------------------- /differential/second-order/secondOrderSupercardioid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwwt/microphoneArray/HEAD/differential/second-order/secondOrderSupercardioid.m -------------------------------------------------------------------------------- /differential/superdirective/maxNulls.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwwt/microphoneArray/HEAD/differential/superdirective/maxNulls.m -------------------------------------------------------------------------------- /differential/third-order/thirdOrder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwwt/microphoneArray/HEAD/differential/third-order/thirdOrder.m -------------------------------------------------------------------------------- /differential/utils/getSteeringVector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwwt/microphoneArray/HEAD/differential/utils/getSteeringVector.m -------------------------------------------------------------------------------- /differential/utils/my_polar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwwt/microphoneArray/HEAD/differential/utils/my_polar.m --------------------------------------------------------------------------------