Skip to main content

Importing MATLAB projects into SAGE (via OMPC)

Recently, I imported a large MATLAB project into SAGE. Here are the steps I followed. 

The first step was the conversion of .m files to python (.pym). ompc (An Open-Source MATLAB-to-Python Compiler) by Peter Jurica may be used as a standalone application, or online here. The online application is not a full-fledged cloud application where files may be imported and stored for future access -- instead, it allows the importing and conversion of a single file or piece of code, at a time. The standalone application requires the following packages -- scipy, numpy and matlibplot. These may found in any scipy-stack distribution based on Python 2.5 or 2.4 (for e.g. I used v1.1 of Portable Python). Then, ompc documentation describes how a file may be converted. There is a small bugfix that needs to be made in the code (if it hasn't already happened, ref. bitbucket pull request) -- change the line "if not os.path.exists(sys.path[1])" to "if not os.path.exists(sys.argv[1])" in ompc\ompcply.

After I converted all my .m files to .pym files, I created my project on sagecloud and uploaded my project directories into them. .mat files may then be converted as well, on the cloud, using the python notebook (see instructions here).


Comments

Popular posts from this blog

the World Cup draw -- an alternative proposal

The FIFA World Cup seeding and draw system has consistently produced groups of death and groups comprised mainly of teams that fail to invoke passion or imagination from fans around the world, except perhaps for such teams' own fans. The latest edition is no exception -- and may even be the worst ever on this measure. An outline of the draw system can be seen here . We have one group which contains Switzerland, Ecuador and Honduras and another consisting of Russia, Algeria and South Korea!! And, on top of this, we have at least three, if not four or more, groups of death. Depending on one's perspective, esp. given the recent rise of African powerhouses, all of the rest of the groups may even be considered Groups of Death!! This is a disservice to football fans around the world, not to mention the skilled and enterprising teams that worked hard to get here. To address this, I propose a simplified draw system : Randomize Pot 1 and assign to Groups Assign remaining Pots t...

Migrating from MS SQL Server to MongoDB

The following contains notes from various attempts at migrating 2.5GB of MS SQL Server data to MongoDB, on an 8 GB, quad-core, 64-bit Windows 7 Enterprise machine. [TERMINATED]  http://mssql2mongo.codeplex.com/ : Simple to use. Exponential slowdown observed in migration. For a total of the 50 million records spanning two tables, the following migration times were observed: 1 second for the first 100,000 records,  30 minutes for 1,000,000, 20 hours for 16 million (after which I terminated the process). [DID NOT WORK] http://rubydoc.info/gems/mongify/ : A ruby-based approach. Use Ruby 1.9.3 (tiny_tds dependency causes problems with Ruby 2.0). Install DevKit before installing the mongify gem. Also, use ' sqlserver ' as the adapter in the .config file. Then, before running ' mongify check <config-file> ', install the gems  activerecord-sqlserver-adapter  and tiny_tds . At this stage, it fails. ' mongify translation <config-file> ' fails as well. ...

the resurgence of liberty

Political awareness and activism at the grassroots level is rising in the United States. The political spectrum in the United States is changing. Long seen as one-dimensional (left vs. right), there has been a strengthening and orthogonalization of at least one more axis -- that of liberty, and the lack thereof. Libertarianism is most certainly on the rise -- with a rising concern, across all demographics, for broader economic ( laissez-faire capitalism  and Austrian economics ) and personal freedoms ( civil libertarianism ). While a majority of the new libertarians come from the right , there is also growing number of left-libertarians as well as a significant exodus of liberals and progressives toward classical libertarianism. Fiscal conservatism is a defining characteristic of the traditional right-wing. This ideology is generally hawkish on spending, budget deficits and taxes and moderate on business regulation and social safety-net programs, advocating for fiscal and mo...