====== Differences ====== This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
analysis:matlabtricks [2014/08/22 20:25] mvdm created |
analysis:matlabtricks [2018/04/17 15:20] (current) |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ==== Plotting ==== | ==== Plotting ==== | ||
| - | * To plot an ''imagesc'' with NaNs transparent, do this: | + | * To plot an ''imagesc'' with NaNs transparent, do this: |
| <code matlab> | <code matlab> | ||
| - | h = imagesc(X,Y,C) | + | h = imagesc(X,Y,C); |
| - | set(h,'alphadata',~isnan(C)) | + | set(h,'alphadata',~isnan(C)); |
| </code> | </code> | ||
| + | | ||
| + | (this is helpful when plotting 2D tuning curves, for instance; pcolor() is not recommended) | ||
| + | | ||
| + | * To eliminate the large borders when using subplots, use ''subtightplot()'' instead. | ||