Code covered by the BSD License  

Highlights from
DSPLOT - downsampled plot

4.8

4.8 | 5 ratings Rate this file 27 Downloads (last 30 days) File Size: 4.58 KB File ID: #15850
image thumbnail

DSPLOT - downsampled plot

by Jiro Doke

 

06 Aug 2007 (Updated 13 Aug 2007)

This function creates a downsampled plot to improve the speed of exploration (zoom, pan)

Editor's Notes:

This was a File Exchange Pick of the Week

| Watch this File

File Information
Description

This version of "plot" will allow you to visualize data that has very large number of elements. Plotting large data set makes your graphics sluggish, but most times you don't need all of the information displayed in the plot. Your screen only has so many pixels, and your eyes won't be able to detect any information not captured on the screen.

This function will downsample the data and plot only a subset of the data, thus improving the memory requirement. When the plot is zoomed in, more information gets displayed. Some work is done to make sure that outliers are captured.

Syntax:
 dsplot(x, y)
 dsplot(y)
 dsplot(x, y, numpoints)

Example:
 x =linspace(0, 2*pi, 1000000);
 y1=sin(x)+.02*cos(200*x)+0.001*sin(2000*x)+0.0001*cos(20000*x);
 dsplot(x,y1);

MATLAB release MATLAB 7.4 (R2007a)
Other requirements Only works for R2006b or later. It uses the zoom/pan customization feature which became available in R2006b.
Tags for This File  
Everyone's Tags
Tags I've Applied
Add New Tags Please login to tag files.
Comments and Ratings (10)
09 Aug 2007 Joacim Rådstam

Excellent function!
I often plot time series with more than 2 million samples and this function makes the plot so much faster to zoom and pan in. Also the maximizing and minimizing of the figure window is much faster.

10 Aug 2007 Rob C

Looks very useful but am unable to run any of your examples. When I try this results:

??? One or more output arguments not assigned during call to 'C:\MATLAB701a\toolbox\matlab\graph2d\zoom.m (zoom)'.

Error in ==> dsplot at 94
hZoom = zoom(hFig);

Any ideas?

10 Aug 2007 Jiro Doke

Rob,
I'm sorry to say that it is not designed to work with MATLAB 7.01, as mentioned in "Other Requirements". This tool only works because it uses a new feature that became available in R2006b (MATLAB 7.3). I've thought about trying to make this usable in earlier versions, but it would be more clunky and won't be able to make use of the built in zoom/pan features.

19 Mar 2008 Scott Miller  
26 Oct 2009 Kai

Great! This function saved me. Large data plots run like hell with it! But I was missing the possibility to specify figure or axes handles to plot into.

25 Nov 2009 Joseph Kirk

This is an excellent function to have. Good work. Have you considered writing code to do something similar for other plotting functions such as IMAGESC for example?

20 Jul 2010 M. A. Hopcroft

Really useful! Thanks for sharing!

10 May 2011 Yuval Cohen

You should also look at 'tplot'
It uses minimum and maximum rather than resample and runs much faster.

16 Dec 2011 Hoi Wong

The function is great, but I'd really love to use it in subplots. Any chance to add support to subplots?

It'd be tricky to tell whether the plot is downsampled or true representation without changing the figure title. One way I can think of is to set the 'Color' property of the subplot axesHandle to very light yellow for downsampled display.

16 Dec 2011 Hoi Wong

Oh....one more thing. I put NaNs in my signal so it wouldn't plot, but turns out it confuses dsplot's outlier search routine. Any good ways to get around that?

Please login to add a comment or rating.
Updates
13 Aug 2007

Update - added CreateFcn for the figure so that when the figure is saved and re-loaded, the zooming and panning works. Also added a menu item for saving out the original data back to the base workspace.

Tag Activity for this File
Tag Applied By Date/Time
data exploration Jiro Doke 22 Oct 2008 09:22:16
downsample Jiro Doke 22 Oct 2008 09:22:16
graphics Jiro Doke 22 Oct 2008 09:22:16
speed Jiro Doke 22 Oct 2008 09:22:16
plot Jiro Doke 22 Oct 2008 09:22:16

Contact us at files@mathworks.com