回答済み
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...

14年弱 前 | 0

回答済み
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...

14年弱 前 | 0

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

14年弱 前 | 7

| 採用済み

回答済み
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...

14年弱 前 | 2

回答済み
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...

14年弱 前 | 0

| 採用済み

回答済み
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...

14年弱 前 | 0

回答済み
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))]; ...

14年弱 前 | 0

| 採用済み

回答済み
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...

14年弱 前 | 1

| 採用済み

送信済み


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.

17年弱 前 | ダウンロード 1 件 |

5.0 / 5
Thumbnail