Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.180.929 Times

Gransfors Axes software
Filter: All | Freeware | Demo
 

Gransfors Axes

< 1 2 3 4 > 
Added: September 09, 2013 | Visits: 252

Link figures The function is similar to Matlab's linkaxes, only it takes figure numbers instead of axes handles.Use the function when you want to zoom and pan multiple axes that are not on the same figure (i.e. subplot).



Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (43): Link figures Download

Added: May 29, 2013 | Visits: 480

Drag and Drop(Line Objects) this function provides drag and drop of any line objects in an axes within a figure window;to use this:just give the handle of the figure or figures that you want to have D&D functionality associated with it to the Mouse_over_lineObj function and you done!usage:1) you can drag and drop a line...





Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (42): Drag and Drop(Line Objects) Download

Added: June 27, 2013 | Visits: 276

Tiny Axis This function shows the orientation of the provided axes plot in the lower left corner. This way the orientation can still be seen when the axis are disabled.At the moment the code is not very advanced. But it might still be usefull to some people.example:f = figure('Color',[0.3 0.3 0.32]);h =...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (43): Tiny Axis Download

Added: August 25, 2013 | Visits: 184

LINKPLOT This function is helpful for complex figures with many axes plots.It is similar to linkdata functionality, but in contrast allows to viewanimation video, displaying a frame each time when called. Usage is extremely easy.


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (39): LINKPLOT Download

Added: June 25, 2013 | Visits: 271

Legend best fit legend_best_fit automatically positions the existing legend inside the axes to avoid covering the plotted data. I think it does a better job than the "Location", "Best" option in "legend" command.Example: legend_best_fit(axes_handle) Will position legend inside if it can, return false if it can...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (39): Legend best fit Download

Added: April 17, 2013 | Visits: 196

copyaxes COPYAXES copy an axes object into another axes objectCOPYAXES(SOURCE, DESTINATION) - copy axes from SOURCE to DESTINATIONCOPYAXES(..., isInSubplot) - if the destination is in a subplot figure (default false).EXAMPLE: Copy a axes with plot plot([1:0.1:2*pi], sin([1:0.1:2*pi])); title('sin...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (43): copyaxes Download

Added: June 30, 2013 | Visits: 304

FLIPXYVIEW (v2.0, mar 2010) FLIPXYVIEW sets the view of the current 2D axes in such a way that the x and y axis interchange positions. The current horizontal axis will become the vertical axis, and vice versa.FLIPXYVIEW (AX) rotates the axes specified by the handle AX.Note that this function only changes the view and not...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (43): FLIPXYVIEW (v2.0, mar 2010) Download

Added: June 11, 2013 | Visits: 317

Myplotyy Myplotyy plots different data sets with a common x-axis but using individual y-axes in one figure.The properties of every curve (y-axis) can be individually adjusted, such as linear or logarithmic scale, normal or reverse scale, confidence intervals, colors, curve labeling, ...See screenshot and...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 30.72 KB Download (39): Myplotyy Download

Added: June 13, 2013 | Visits: 265

fillfigure FILLFIGURE resets the position of an axes, and either its XLim or its YLlim, so that the axes completely fills its parent figure. After calling FILLFIGURE, you can make use of the entire figure window while zooming and panning an image.The image used in the screen shot and first example,...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (39): fillfigure Download

Added: August 24, 2013 | Visits: 369

Annotated cropping of data plots With the same data plotted in two sets of axes, cropbox.m draws a box in the first axes to indicate the cropping limits specified by the user. The second axes is cropped to the specified limits and lines are drawn linking the corners of the cropping box to the corners of the cropped axes.Lines...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (43): Annotated cropping of data plots Download

Added: May 09, 2013 | Visits: 173

tight subplot Subplot tends to leave a lot of empty space around the axes. Tight_subplot allows to adjust the spacing between the axes as well as the margins around the axes.For example:ha = tight_subplot(3,2,[.01 .03],[.1 .01],[.01 .01])for ii = 1:6; axes(ha(ii)); plot(randn(10,ii));...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (43): tight subplot Download

Added: May 19, 2013 | Visits: 343

addaxis_unit This function allows to use two different y-axes with the same data in one plot. Note, that only one curve but in two different units is shown. This is the difference to plotyy which plots two different datasets into one figure.Take a look to the screenshot and run the different examples in the...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (44): addaxis_unit Download

Added: September 11, 2013 | Visits: 407

mtit: a pedestrian major title creator MTIT- creates a major title above all axes in a figure- preserves the stack order of the axesseveral options allow to fine-tune the position of the title and typical text property/value pairs may be used as additional input to further adjust its lookssee> help mtitfor usage and a brief example...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (40): mtit: a pedestrian major title creator Download

MULTIPLOT2 - Multiplot version for version prior to R2007a (do not use inputParser) multiplot - 2D-line plots on several axes with common x-axismultiplot(XDATA,YDATA,'PropertyName',PropertyValue,...) plots the datastored in the cell arrays XDATA and YDATA in several subplots with a commonx-axis. multiplot also links all generated axes in order to synchronize thezoom along the...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (45): MULTIPLOT2 - Multiplot version for version prior to R2007a (do not use inputParser) Download

Added: September 12, 2013 | Visits: 233

ScrollPanel Standard Handle Graphics uipanels provide containment and groups axes and their children. The ScrollPanel provides the ability to define a scrollable area and the panel is the viewport onto that area.Since Scrollpanel is not a built-in Handle Graphics object, objects must be parented to it...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (44): ScrollPanel Download

Added: August 06, 2013 | Visits: 344

Scrollsubplot SCROLLSUBPLOT Create axes in tiled positions.SCOLLSUBPLOT(m,n,p), breaks the Figure window intoan m-by-n matrix of small axes, selects the p-th axes for the current plot, and returns the axis handle. The axes are counted along the top row of the Figure window, then the second row, etc. For...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (44): Scrollsubplot Download

Added: May 05, 2013 | Visits: 169

Subaxis - Subplot SUBAXIS Create axes in tiled positions. (just like subplot) Usage: h=subaxis(rows,cols,cellno[,settings]) h=subaxis(rows,cols,cellx,celly[,settings]) h=subaxis(rows,cols,cellx,celly,spanx,spany[,settings]) SETTINGS: Spacing,SpacingHoriz,SpacingVert...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (44): Subaxis - Subplot Download

ScreenCapture - get a screen-capture of a figure frame or component ScreenCapture gets a screen-capture of any Matlab GUI handle (including desktop, figure, axes or uicontrol), or a specified area rectangle located relative to the specified handle. Screen area capture is possible by specifying the root (desktop) handle (=0). The output can be either to an image...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (43): ScreenCapture - get a screen-capture of a figure frame or component Download

Added: August 28, 2013 | Visits: 255

obliqueview Obliqueview transforms an axes to use an oblique projection instead of the default orthographic projection. Although oblique projections are distorted views, they are often useful for illustration purposes.Obliqueview lets the user select a viewing plane ('xy','xz,'yx',etc) and angle for the...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (44): obliqueview Download

Added: April 16, 2013 | Visits: 358

logzplot LOGZPLOT is an easy way to create surface plots with both a log-scaled z-axis and log-scaled coloring. LOGZPLOT creates a plot using SURF, MESH, PCOLOR, TRISURF or TRIMESH, then applies the logarithmic transformation. If called without data inputs, LOGZPLOT will apply the logarithmic scaling to...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (45): logzplot Download

< 1 2 3 4 >