Archive for the ‘Uncategorized’ Category

November 11, 2013 0

plot functions in mathematica

By in Mathematica, Uncategorized

contour plots can be used in mathematica to plot equations such as ellipsoids like: 1/10^2*x^2 + 1/6^2*y^2 + 1/15^2*z^2 == 1 a command like: ContourPlot3D[ 1/10^2*x^2 + 1/6^2*y^2 + 1/15^2*z^2 == 1, {x, -11, 11}, {y, -7, 7}, {z, -16, 16}] creates the ellipsoid

June 11, 2012 0

Getting texworks and bibtek (.bib files) to work

By in Uncategorized

Easiest way is to use latexmk from repository In texworks latexmk needs to be setup. A guide can be found here: http://code.google.com/p/texworks/wiki/AdvancedTypesettingTools#latexmk In texworks go to edit->preferences->typesetting under “processing tools” add latexmk and add teh arguments found in the link above (repeates here): -e $pdflatex=q/pdflatex $synctexoption %O %S/ -pdf $fullname You need to add them […]

March 8, 2012 0

Attempt to find rotated QR codes and get the rotation

By in Uncategorized

Attempting to use zxing library to detect qr codes and its rotation. As for now it is unknown if the library is able to find rotated qr codes and if detected return the rotation. After having read: http://groups.google.com/group/zxing/browse_thread/thread/ea911e890ea69ea5 The use of the zxing’s implementation to detect QR codes seems less promising.