Answered
How can I plot boundary of India?
If you have the mapping toolbox then you can use the worldmap function: <http://www.mathworks.se/help/toolbox/map/ref/worldma...

13 years ago | 0

Answered
moving a histogram to correct skewness
You can use a boxcox transform to make your data normal. http://www.mathworks.se/help/toolbox/finance/boxcox.html Cheers...

13 years ago | 0

Answered
How to save a figure file into a subfolder
Here goes: saveas(figure(1),[pwd '/subFolderName/myFig.fig']); Cheers!

13 years ago | 7

| accepted

Answered
Put float data into mat-file using fwrite function
If you really want to create a mat file from scratch, then you should read the white paper first: http://www.mathworks.com/he...

13 years ago | 2

Answered
is there a jump of 2 months?
Assuming your data is ordered, and that you have the financial toolbox: numDate = datenum(A,'dd/mm/yyyy'); numDate = num...

13 years ago | 0

| accepted

Answered
How can I export variable to a text file in mex file ?
Hello! Have a look here <http://www.cplusplus.com/doc/tutorial/files/> #include <iostream> #include <fstream> usin...

13 years ago | 0

Answered
Making Cumulative Difference Calculation
Not entirely sure if that's what you meant but here goes: data = sort(rand(10,1)); cumDiff = [0;cumsum(diff(data))]; ...

13 years ago | 0

| accepted

Answered
same y label on both sides of contourf
Here goes, plotting an extra axes in the same position, making it transparent and changing the location of the y-axis. [C,h...

13 years ago | 1

| accepted

Submitted


sel_and_del Interactively select and delete points from a 2D plot with the mouse
Left click selects a point and right click unselects it.

16 years ago | 1 download |

5.0 / 5
Thumbnail