Archive for the 'Academics' Category

Fedora 13 R Packages for Advanced Statistics

Thursday, July 15th, 2010

Here is a repository of R RPM packages for Advanced Statistics that I built for Fedora 13. These are over and above the stock Fedora packages. I did search far and wide for them and could find any. Here is a list of packages:
R-BSDA-1.0-1.fc13.noarch.rpm
R-BSDA-1.0-1.fc13.src.rpm
R-RColorBrewer-1.0.2-1.fc13.noarch.rpm
R-RColorBrewer-1.0.2-1.fc13.src.rpm
R-SparseM-0.85-1.fc13.i686.rpm
R-SparseM-0.85-1.fc13.src.rpm
R-e1071-1.5.24-1.fc13.i686.rpm
R-e1071-1.5.24-1.fc13.src.rpm
R-e1071-debuginfo-1.5.24-1.fc13.i686.rpm
R-mlbench-2.0.0-1.fc13.i686.rpm
R-mlbench-2.0.0-1.fc13.src.rpm
R-mlbench-debuginfo-2.0.0-1.fc13.i686.rpm
R-randomForest-4.5.35-1.fc13.i686.rpm
R-randomForest-4.5.35-1.fc13.src.rpm
R-randomForest-debuginfo-4.5.35-1.fc13.i686.rpm
R-scatterplot3d-0.3.30-1.fc13.noarch.rpm
R-scatterplot3d-0.3.30-1.fc13.src.rpm
R-xtable-1.5.6-1.fc13.noarch.rpm
R-xtable-1.5.6-1.fc13.src.rpm
The packages can be downloaded at my CNG academic site.

JPype 0.5.4 RPM Packages for Fedora 11

Friday, August 28th, 2009

I can’t seem to find Fedora 11 packages for jpype (a nice Python-Java bridge). So I built one myself. If anybody else needs it here they are:

JPype-0.5.4.1-1.fc11.i586.rpm
JPype-0.5.4.1-1.fc11.src.rpm

Enjoy!

Sympy 0.6.5 RPM Packages for Fedora 11

Thursday, August 27th, 2009

I can’t seem to find Fedora 11 packages for sympy (symbolic algebra package from Python). So I built one myself. If anybody else needs it here they are:

sympy-0.6.5-1.fc11.noarch.rpm
sympy-0.6.5-1.fc11.src.rpm

Enjoy!

Wanted Researchers: Open to Ateneo CS, MIS and ECCE Students

Tuesday, October 9th, 2007

It is that time of the year again when I hear my current batch of students finish their projects and write their papers in preparation for their defenses this week. While reading on some of the latest developments in the space, I found some interesting things that could be worked on.
Here are some ideas for […]

Parallel Computing: Quick Guide to Configuring NFS

Saturday, September 8th, 2007

Providing common shared storage is an important part of parallel computing. Being able to share files between compute nodes in a parallel cluster is key to getting a parallel job done. This is a follow-up article on configuring OpenMPI for Parallel Computing. You need to do this to get other nodes to play in your […]

Parallel Computing and Random Numbers

Friday, August 31st, 2007

When writing programs that work together on different machines. Programmers encounter numerous types of problems ranging from endianess, file storage format, executable formats and many others. One possible problem is generating random numbers.
Random number generators are implemented in many different ways. I will not aim to discuss the details of generating random numbers here. Just […]

Computer Math with Big Numbers

Monday, August 27th, 2007

As programmers, we are used to dealing with lots and lots of numbers. Most of the time these numbers are quite small and manageable. Something they get really large and ugly. We create all sorts of programs to deal with these giants numbers collectively know as BIGNUM. Why do we need them? There are extreme […]

Parallel Computing: Hyperslabs in HDF5

Tuesday, July 24th, 2007

Well, I hope you guys where able to get HDF5 and OpenMPI running on your machines. As you will notice, the previous example code is not very useful because every process can read and write to any part of the file. This means that “you” as the programmer will have to manually control what is […]

Parallel Computing: HDF5 and MPIO for Fedora Core 6

Monday, July 23rd, 2007

As a professor once told me, “70% of a typical modeling problem is about pre-processing of data”. One of the biggest problems of data pre-processing is simple storing, representation and loading of data. Fortunately, the folks at the NCSA took the time to create stuff we could actually use to solve these problems.
What is HDF5?

HDF5 […]

Parallel Computing: Checking Out Eclipse Parallel Tools Platform

Monday, June 25th, 2007

As promised in my last blog, I have decided to check out Eclipse Parallel Tools Platform (PTP). This particular plug-in looks interesting as it aims to development a complete industry-strength platform for the development high performance computing applications.
The aim of the parallel tools platform project is to produce an open-source industry-strength platform that provides […]