I have a lot of trouble installing numpy on Mac OS X 10.6. When I try to install it from source, I get the following error:
customize NAGFCompiler
Could not locate executable f95
customize Ab
I have a lot of trouble installing numpy on Mac OS X 10.6. When I try to install it from source, I get the following error:
customize NAGFCompiler
Could not locate executable f95
customize Ab
1 # !usr/bin/env python
2 # Author:@vilicute
3
4 import numpy as np
5 # Creation of matrix
6 matr1 = np.mat(“4 2 3;4 5 6;7 8 9” )
7 matr2 = np.matrix([[4,5,6],[7,8,9],[1 ,2,3]])
8 pri