ALBD

 view release on metacpan or  search on metacpan

CHANGELOG  view on Meta::CPAN

NAME
    ALBD CHANGES

  Changes from version 0.00 to 0.01
    First Release, leaving here to show how change log should be updated

  Changes from version 0.01 to 0.03
    CPAN problems, so rereleased. No major changes

  Changes from version 0.01 to 0.05
    CPAN problems, so changed LiteratureBasedDiscovery.pm to ALBD.pm

utils/datasetCreator/squaring/squareMatrix.m  view on Meta::CPAN

%nohup matlab -nojvm -r squareMatrix -logfile squareMatrix_matlab.out </dev/null &

clear all;
close all;

sparseSquare('/home/henryst/lbdData/squaring/1975_1999_window8_noOrder','/home/henryst/lbdData/squaring/1975_1999_window8_noOrder_squared');

error('DONE!');


function sparseSquare(fileIn, fileOut)

utils/datasetCreator/squaring/squareMatrix_partial.m  view on Meta::CPAN

%nohup matlab -nojvm -r squareMatrix_partial -logfile squareMatrix_matlab.out </dev/null &

clear all;
close all;

%The number of rows/cols to square at a time. Larger numbers will run faster
% but will require more ram. Lower numbers will run slower but require less ram.
% You want this number to be as high as possible without MATLAB crashing
increment = 40000;
sparseSquare_sectioned('/home/henryst/lbdData/squaring/1975_1999_window8_noOrder','/home/henryst/lbdData/squaring/1975_1999_window8_noOrder_squared_secondTry',increment);
error('DONE!');



( run in 1.037 second using v1.01-cache-2.11-cpan-49f99fa48dc )