Tuesday, 25 October 2016

Setting default interpreter in MATLAB figures

To set the default interpreter to "none" in all your MATLAB figures, use the following command

>> set(0,'DefaultTexInterpreter','none');

Source: https://in.mathworks.com/matlabcentral/newsreader/view_thread/285567

Thursday, 4 June 2015

World's First Wireless MIDI Guitar Controller for Acoustic Guitar - ACPAD





My friend worked on it for 3 years, came up with several prototypes and now releasing it to market.

If you like it, visit acpad.com and subscribe to their newsletter.



Peace.

Saturday, 30 May 2015

Scilab plots : Legend

To include legend into a scilab plot there is no GUI based method as in MATLAB. At least, there are none that i know of.
Instead we use the following commands after the figure has been plotted.

g = gcf();
legend(g, ['Legend entry 1','Legend entry 2'],-5);

The last argument decides the location of the legend in the plot. -5 puts it outside the plot on the top left side. Vary this argument to find other positions.





Peace.

Sunday, 24 May 2015

Scilab : Shortcuts in Scinotes

To navigate between tabs in scinotes, the short cut is

Ctrl + Tab + up/down arrow

This is for Scilab version 5.3.3





Peace.

Monday, 11 May 2015

Scilab Plots : axes ranges

The plots themselves adjust the axes ranges depending on the values of the data being plotted.
However, if you need to set the ranges fixed, then use the following code after your plot command.

{code}
g = gca();
g.data_bounds = [0,0;1,1];
{\code}

where, 
g.data_bounds = [xLowerLimit, yLowerLimit: xUpperLimit,yUpperLimit];





Peace.

Scilab Plots : Background

The scilab plots by default come with a grey background which is just hateful. You need to go to the figure properties in order make it into white background. To make the background white as you plot, use the following code just after your plot command.

figure; plot(...);
f = gcf();
f.background = 8;

The number 8 corresponds to white. To know what other numbers correspond to, check the sliding bar in figure properties.



Peace.

Tuesday, 28 April 2015

Ubuntu 12.04 : Applets on the panel

This is if you are using a gnome gui for ubuntu
If panel gets screwed then -
Alt + Right-Click on the panel and delete it

Then, Alt + Right-Click on the bottom panel and say "New Panel"

On the new panel do Alt + Right-Click, and click on "Add to Panel..."
In the window and add the following applets

1. Notification Area
2. Indicator Complete
3. Menu Bar (Custom menu bar)

this should resemble the default gnome toolbar.


Peace.