This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| myPrintNotebook[filename_String] := Block[{nbo, pdfnamne}, | |
| nbo = NotebookOpen[ToFileName[Directory[], filename], | |
| Visible -> False]; | |
| FrontEndExecute[FrontEndToken[nbo, "SelectAll"]]; | |
| FrontEndTokenExecute[nbo, "SelectionOpenAllGroups"]; | |
| pdfname = StringReplace[filename, ".nb" -> "_nb.pdf"]; | |
| Export[pdfname, nbo, "PDF"]; | |
| Print["saving to ", pdfname]; | |
| NotebookClose[nbo]; | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Script started on Thu Oct 24 13:03:14 2013 | |
| -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= | |
| PyTables version: 3.1.0dev | |
| HDF5 version: 1.8.12-pre1 | |
| NumPy version: 1.7.1 | |
| Numexpr version: 2.2.2 (not using Intel's VML/MKL) | |
| Zlib version: 1.2.5 (in Python interpreter) | |
| BZIP2 version: 1.0.6 (6-Sept-2010) | |
| Blosc version: 1.2.3 (2013-05-17) | |
| Cython version: 0.19.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Script started on Thu Oct 24 11:45:28 2013 | |
| -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= | |
| PyTables version: 3.1.0dev | |
| HDF5 version: 1.8.11 | |
| NumPy version: 1.7.1 | |
| Numexpr version: 2.2.2 (not using Intel's VML/MKL) | |
| Zlib version: 1.2.5 (in Python interpreter) | |
| BZIP2 version: 1.0.6 (6-Sept-2010) | |
| Blosc version: 1.2.3 (2013-05-17) | |
| Cython version: 0.19.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Script started on Thu Oct 24 11:10:06 2013 | |
| Obtaining file:///Users/andreabedini/Development/py27-numpy-1.8.x/PyTables | |
| Running setup.py egg_info for package from file:///Users/andreabedini/Development/py27-numpy-1.8.x/PyTables | |
| /var/folders/hb/qzq08w3d7k7cdgw0j6zntxgr0000gn/T/lzo_version_date6UwwEL.c:1:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int] | |
| main (int argc, char **argv) { | |
| ^~~~ | |
| /var/folders/hb/qzq08w3d7k7cdgw0j6zntxgr0000gn/T/lzo_version_date6UwwEL.c:2:5: warning: implicit declaration of function 'lzo_version_date' is invalid in C99 [-Wimplicit-function-declaration] | |
| lzo_version_date(); | |
| ^ | |
| 2 warnings generated. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Script started on Fri Oct 18 12:47:49 2013 | |
| Cythonizing sources | |
| scipy/cluster/_vq_rewrite.pyx has not changed | |
| scipy/interpolate/interpnd.pyx has not changed | |
| scipy/io/matlab/mio5_utils.pyx has not changed | |
| scipy/io/matlab/mio_utils.pyx has not changed | |
| scipy/io/matlab/streams.pyx has not changed | |
| scipy/ndimage/src/_ni_label.pyx has not changed | |
| scipy/signal/_spectral.pyx has not changed | |
| scipy/sparse/csgraph/_min_spanning_tree.pyx has not changed |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Script started on Tue 03 Sep 2013 14:49:11 EST | |
| CC H5detect-H5detect.o | |
| ../../src/H5detect.c:115:19: warning: size of ‘d_g’ is 12800 bytes [-Wlarger-than=] | |
| static detected_t d_g[MAXDETECT]; | |
| ^ | |
| In file included from ../../src/H5detect.c:57:0: | |
| ../../src/H5detect.c: In function ‘find_bias’: | |
| ../../src/H5private.h:309:38: warning: conversion to ‘long unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion] | |
| #define MIN(a,b) (((a)<(b)) ? (a) : (b)) | |
| ^ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # put this into your ~/.ssh/config | |
| Host *.domain !gateway.domain | |
| ProxyCommand ssh -q gateway.domain nc %h 22 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Created by Andrea Bedini on 7/May/2012. | |
| // Copyright 2012 Andrea Bedini. | |
| #ifndef MY_ARRAY_HPP | |
| #define MY_ARRAY_HPP | |
| #include <algorithm> | |
| #include <vector> | |
| template<typename ValueType, size_t D> | |
| class my_array { |
NewerOlder