Tuesday, February 11, 2014

Thursday, September 26, 2013

create schema from xml file using visual studio

1. open xml file with VS
2. while opened, vs will generate some separate files
3. open cmd window
4. type  xsd command
    for example:
               xsd lte1.sxd lte2.xsd lte3.xsd  /classes /n:"LTE"
this command will generate .cs file, and can be used for parsing xml file.

Wednesday, September 18, 2013

Monday, September 9, 2013

Install latest Octave on Ubuntu 12.04 LTS

Never try to install from binary distribution, weird errors will make you headache.

If you want to install the latest version, first trying to add it to Ubuntu repository.

Instructions you can follow is:
http://blogs.bu.edu/mhirsch/2012/08/octave-3-6-on-ubuntu-12-04/


Install other packages:
All other packages you can find here:
http://octave.sourceforge.net/packages.php

Command used to install is: (for example)
pkg install image-2.0.0.tar.gz

If you get errors like "Permission Denied",

Run Octave by sudo octave instead.