Home > By category > Scripts > Multimedia
Sort by : Name|Date|Downloads|Rating|

Listing of Multimedia in Scripts

A GUI interface with sliders and zoom buttons for navigation in large images in a similar way to that provided by 'imviewer' of Image Processing Toolbox..

  • Platform: Scripts, Matlab

This GUI will help the novice user get up to speed very quickly on using GUI-based applications. Everything is laid out in a very simple Step 1, Step 2, Step 3, etc. layout. It is a very good starting point for a typical image analysis application. This application uses GUIDE to do the user interface design, and has most of the basic controls such as buttons, listboxes, checkboxes, radio buttons, scrollbars, etc.

  • Platform: Scripts, Matlab

My first attempt at a mex file making a simple call to the "SetWindowPos" function in the user32 library. This allows users to keep MATLAB figures on top, floating above all other windows even when focus is not on the target window. Example ... figure(1); winontop('figure 1'); Tested on MATLAB Version 7.

  • Platform: Scripts, Matlab
  • raw2stl
  • License: Shareware
  • Price: .price.
  • Rating

A simple utility for converting 3d objects of RAW format to (ASCII) STL format. the zip file includes a sample RAW file (a cube) that can be converted to STL format. What it dose not do: simplify (e.g. the cube could be represented by 12 triangles if simplified).

  • Platform: Scripts, Matlab

This is a GUI that allows you to go through the parameters of Simulink models, blocks, and signals once you have an open Simulink model (the GUI needs some minor updates to catch unexpected warnings but works fine)..

  • Platform: Scripts, Matlab
  • Panel
  • License: Shareware
  • Price: .price.
  • Rating

Panel is an alternative to Matlab's "subplot", providing easier control over layout (particularly, better use of space). If you find the layouts generated by subplot() have too much space and not enough axis, try Panel. If you find it tedious to construct subplot layouts that are more complex than a simple grid, try Panel.

  • Publisher: Ben Mitch
  • Date: 26-05-2013
  • Size: 328 KB
  • Platform: Scripts, Matlab
  • labelplot
  • License: Shareware
  • Price: .price.
  • Rating

This short function will generate a legend based on 'Tag' information given by plot. A legend title is also possible. figure; hold on; x = 1:10; plot(x,x,'Tag','Positive'); plot(x,-x,'Tag','Negative'); labelplot('eo','v','Slope'); The above example is equivalent to legend('Positive','Negative') and adding a text box 'Slope' above it.

  • Platform: Scripts, Matlab

In MATLABâ„¢ 7.7 the default layout was changed. Choosing "Default" from the Desktop Layout menu now arranges desktop tools in three columns where previously they appeared in two columns. If you prefer the old, two column, layout follow the steps below to add a "Classic Default" item to the Desktop Layout menu.

  • Platform: Scripts, Matlab
  • scatplot
  • License: Freeware
  • Price: 0.00
  • Rating

% Scatter plot with color indicating data density % % USAGE: % out = scatplot(x,y,method,radius,N,n,po,ms) % out = scatplot(x,y,dd) % % Draws a scatter plot with a colorscale % representing the data density computed % using three methods % % INPUT VARIABLES: % x,y - are the data points % method - is the method used to calculate data densities: % 'circles' - uses circles with a determined area % centered at each data point % 'squares' - uses squares with a determined area % centered at each data point % 'voronoi' - uses voronoi cells to determin data densities % default method is 'voronoi' % radius - is the radius used for the circles or squares % used to calculate the data densities if % (Note: only used in methods 'circles' and 'squares' % default radius is sqrt((range(x)/30)^2 + (range(y)/30)^2) % N - is the size of the square mesh...

  • Platform: Scripts, Matlab
  • MESHND
  • License: Shareware
  • Price: .price.
  • Rating

MESHND is an M-file toolbox for creating 2D and 3D meshes and ordering them with nested dissection. It can also create a sparse matrix from a regular mesh using an abitrary stencil. Examples: A = meshsparse (meshnd (7,5,2)) creates a 7-by-5-by-2 mesh, and then computes the sparse matrix A that represents the mesh (using a 7-point stencil).

  • Publisher: Tim Davis
  • Date: 26-05-2013
  • Size: 72 KB
  • Platform: Scripts, Matlab

This demo will show how to use some of the spatial transforms that is available. The peaks function is used as a basic object - but others can be used as well - such as the Matlab membrane. The peaks surface is rotating, with 2 spheres orbiting it as satellites.

  • Platform: Scripts, Matlab

SHOWWINDOW(NAME,STATE) changes the state of the window with a certain NAME to the specified STATE. STATE must be one of the following: 'hide', 'shownormal', 'normal', 'showminimized', 'showmaximized', 'maximize', 'shownoactivate', 'show', 'minimize', 'showminnoactive', 'showna', 'restore', 'showdefault', 'forceminimize', 'max' Examples: >> showwindow('MATLAB','minimize') >> showwindow('','minimize') >> figure(4); showwindow('Figure No.

  • Platform: Scripts, Matlab
  • eboxy
  • License: Freeware
  • Price: 0.00
  • Rating

eboxy is a small Linux application for building user interfaces for set-top boxes, suitable for use on a TV. It reads an XML file describing a simple GUI consisting of pages and widgets, and displays it on the screen.Features: - Fully themable / skinnable simple GUI interface system - Control using a mouse, keyboard, joystick, or (optional) infra-red remote via LIRC - JPEG, GIF, PNG (with alpha transparency) and many other image formats supported - TrueType font support (independent of X fonts) - Plugin extension system - Simple scripting language for events (button click, page load etc.

  • Platform: Scripts, C and C plus plus

The original inspiration for ISG comes from the Section Analysis mode of Veeco's Atomic Force Microscope image analysis software. ISG allows similarly designated sections from optical and electron microscope images to be replotted with section data exported from Veeco's software.

  • Platform: Scripts, Matlab

Plots a field line with the initial point P(x0,y0) for a 2D-field given by an equaly spaced grid of positions and corresponding field components. The function employs the 4th order Runge-Kutta method. Example: [x,y] = meshgrid(-2:.2:2,-1:.15:1); z = x .

  • Platform: Scripts, Matlab
  • CITYPLOT
  • License: Shareware
  • Price: .price.
  • Rating

CITYPLOT(Z) uses a surface object to create a basic 'cityplot', similar to the plots here: http://math.nist.gov/MatrixMarket/cityplots.html CITYPLOT(Z,C) uses the colors specified in C to set the CData of the surface object. H = CITYPLOT(...) returns the handle of the surface object.

  • Platform: Scripts, Matlab

plots a 3-D "line" with c-data as color Makes a surface object and the colouring is controlled by the colormap. Example: v_start = [2 1 8]; % m/s g = 9.81; % m/(s^2) t_impact = 2*v_start(3)/g; % s t = [0:t_impact/100:t_impact]'; % s x = v_start(1)*t; % m y = v_start(2)*t; % m z = v_start(3)*t-1/2*g*t.

  • Platform: Scripts, Matlab

This widget will give you access to one of the most common task you have to perform when you manipulate large data sets: Selecting within this large data set what portion of data you want to work on. This easy to use widget will enable you to: - Interactively define the section of your data set you want to work on.

  • Platform: Scripts, Matlab
  • plottable
  • License: Shareware
  • Price: .price.
  • Rating

PLOTTABLE Plot vector or matrix as table. PLOTTABLE(X) plots X as a table. The default printing format is floating point with two decimal places. PLOTTABLE(X,CONTROL) uses the string CONTROL as the printing control string for printing the elements of X.

  • Platform: Scripts, Matlab

This script opens up two "panels" (left-right) as the surfer enters the page..

  • Platform: Scripts, JavaScript

VOL3D Volume (voxel) render a 3-D array using 2-D OpenGL texture maps. Useful for visualizing and exploring 3-D data such as MRI images. This function requires OpenGL hardware acceleration. See 'opengl' command for more information. Use vol3dtool for editing the colormap and alphamap.

  • Publisher: Joe Conti
  • Date: 25-05-2013
  • Size: 10 KB
  • Platform: Scripts, Matlab

2532|Gigs is a php/SQL gig lister designed for bands, venues and music sites alike. The web based Control Panel allows users to add, edit and delete shows and artists. It has support for multiple artists as well as multiple users. 2532|Gigs includes an RSS feed for upcoming shows, calendar featuring upcoming gigs, ability to search past and future gigs and a unique flyer generator.

  • Platform: Scripts, PHP

The main script to start the GUI is 'ring.m'. The first GUI will ask for dimension inputs and color. After filling in this information, a second GUI is used to design the ring cross-section. This cross-section is based upon setting up the inner edge of the ring (i.

  • Platform: Scripts, Matlab

polyfitweighted2.m and polyval2.m --------- polyfitweighted2.m: Find a least-squares fit of 2D data z(x,y) with an n th order polynomial, weighted by w(x,y). polyval2.m: Evaluate 2D polynomial produced by polyfitweighted2.m. Usage polyfitweighted2 ----- P = polyfitweighted2(X,Y,Z,N,W) finds the coefficients of a polynomial P(X,Y) of degree N that fits the data Z best in a least-squares sense.

  • Platform: Scripts, Matlab
  • tabpanel
  • License: Shareware
  • Price: .price.
  • Rating

This tool consists of two functions DRAWTAB and HITTAB. These two functions allow the creation of tab panels within MATLAB. To build the "inside" of each tab you only have to write one function for each tab panel and store all the handles in the tab's userdata.

  • Publisher: Dirk Tenne
  • Date: 25-05-2013
  • Size: 31 KB
  • Platform: Scripts, Matlab

This program can generate AVI movies starting from a series of ASCII files containing your data in matrix format. All you have to do is selecting the directory containing the ASCII files ordered names (with an increasing number in name filename001.txt filename002.

  • Platform: Scripts, Matlab
  • JsJuggle
  • License: Freeware
  • Price: 0.00
  • Rating

JsJuggle is a simulator which displays juggling tricks. You have to describe the tricks in the common used siteswap notation. The distinct feature of this siteswap animator is, that it uses only javascript or Dhtml to animate the patterns. Therefore it should work in every modern web browser!.

  • Platform: Scripts, JavaScript

I needed to draw some vertical markers to my plots in GUI, so I checked out Brandon Kuczenski's hline/vline submission. However it doesn't accept axes handle as an input argument. Getting around by switching with 'gca' causes weird behavior due to uncertain timing in GUI.

  • Publisher: Hoi Wong
  • Date: 24-05-2013
  • Size: 10 KB
  • Platform: Scripts, Matlab
  • exmanager
  • License: Shareware
  • Price: .price.
  • Rating

This small GUI enables the user to save the current workspace, opened figures and a command window diary in a specific folder. The user can retrieve the workspace contents and open all saved figures in one click, thus restoring the state of the work environment when it was saved.

  • Platform: Scripts, Matlab
  • MP4WEB
  • License: Freeware
  • Price: 0.00
  • Rating

MP4WEB is a little web frontend for mp4live (part of MPEG4IP). With MP4WEB you can manage mp4live configurations, create, view and encode (MPEG4) live streams, watch recorded mp4 files... everything via web browser..

  • Publisher: Anonymous
  • Date: 24-05-2013
  • Size: 154 KB
  • Platform: Scripts, PHP

New Downloads

ClickCharts Flowchart
Software Free

ClickCharts Free Flowchart and
diagram software lets you lay
out your ideas, organization,
process or create UML ...

Anvisoft PC Plus

Repair your PC problems easily
and effectively with One-Click
solution for Free. Retrieve
disappearing desktop icon, fix
...

PDF Security OwnerGuard

PDF Security OwnerGuard is the
ultimate Digital Rights
Management (DRM), Security,
Copy Protection, Watermarking,
...

Zortam Mp3 Media Studio

Zortam Mp3 Media Studio is
all-in-one Mp3 application. It
has several modules such us
Zortam Auto tagger, Mp3
Organizer, ...

MacX Free DVD to iPhone
Converter Mac

MacX Free DVD to iPhone
Converter for Mac is the best
free iPhone DVD converter tool
for Mac users to convert DVD
to ...

IP Config Tool

IP Config Tool is a powerful
and easy-to-use tool that
changes your IP address.

eMule Acceleration Patch

eMule Acceleration Patch is a
new add-on for eMule file
sharing program. It improves
your download speed.

ShareGhost

ShareGhost is a
greatly-designed, vastly
capable p2p file sharing
application that supports
Gnutella2, Gnutella, eDonkey,
...

VideoPad Video Editor Free
for Mac

VideoPad Free Video Editing
Program is designed to be
intuitive. VideoPad Free for
Mac is a fully featured video
file ...

ApexSQL Search

ApexSQL Search analyzes SQL
Server database object\'s
dependencies within the
database, across databases,
scripts and ...