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...
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...
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...