I was running into an error when attempting to build on mac: ```bash λ cd src/ λ make In file included from ./SubbandAnalysis.h:11: ./MatrixUtility.h:12:10: fatal error: 'boost/numeric/ublas/matrix.hpp' file not found ``` I fixed this by opening `src/Makefile` and changing this line: ```bash BOOST_CFLAGS=-I/usr/local/include/boost-1_35 ``` to: ```bash BOOST_CFLAGS=-I/usr/local/include ```
I was running into an error when attempting to build on mac:
I fixed this by opening
src/Makefileand changing this line:to: