1 / 34

Matlab for Visualization

Matlab for Visualization. Ray Gasser rayg@bu.edu. IS&T Scientific Visualization Tutorial – Spring 2010. MATLAB. MATrix LABoratory high performance language for technical computing interpreted language (compiler available) interactive GUI command line interface (Command Window)

Télécharger la présentation

Matlab for Visualization

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Matlab for Visualization Ray Gasser rayg@bu.edu IS&T Scientific Visualization Tutorial – Spring 2010

  2. MATLAB MATrix LABoratory • high performance language for technical computing • interpreted language (compiler available) • interactive GUI • command line interface (Command Window) • application specific toolboxes available (Parallel Computing, Statistics, etc.) • coupled with Maple for Symbolic computation • good documentation available (user guides, demos, videos, etc.) • professional support services available from MathWorks IS&T Scientific Visualization Tutorial – Spring 2010

  3. MATLAB – Data Types Matrix • the basic data type is the matrix/array • a vector is just a 1D array • 2 facilities available for displaying vectors and matrices as graphs • MATLAB interactive GUI plotting tool • MATLAB graphics commands from the Command Window IS&T Scientific Visualization Tutorial – Spring 2010

  4. MATLAB – Data Types Volume Data • data defined on three-dimensional grids • multidimensional arrays of scalar or vector data • defined on lattice structures representing values sampled in 3-D space • 2 basic types • Scalar volume data • single data values for each point • examples: temperature, pressure, density, elevation • Vector volume data • two or three values for each point (components of a vector) • magnitude and direction • examples: velocity, momentum IS&T Scientific Visualization Tutorial – Spring 2010

  5. MATLAB - Graphics Model Graphics Model • used to create visual representations of data • two basic types of graphics objects: • Core graphics objects • lines • text • rectangles • patches (filled polygons) • surfaces (3D grid of vertices) • images (2D matrix representation of image) • light sources • axes (define coordinate system) • Composite graphics objects • core graphics objects grouped together IS&T Scientific Visualization Tutorial – Spring 2010

  6. MATLAB – figure function Figure • all graphical output directed to a graphics window called a figure • separate from the Command Window • can contain menus, toolbars, user-interface objects, context menus, axes, or any other type of graphics object. • to create a new figure, use the figure function • (type figure in a Command Window) IS&T Scientific Visualization Tutorial – Spring 2010

  7. Code – figure function Command Window figure IS&T Scientific Visualization Tutorial – Spring 2010

  8. MATLAB - Properties Properties • every graphics object has a set of properties associated with it • defines different attributes of an object, such as its color, size, position, etc. • usually specified by name/property pairs • figure( 'PropertyName', propertyvalue, ...) • can be set at creation time or later by using the set function • Command Window f = figure set (f, 'Name','Test Window') IS&T Scientific Visualization Tutorial – Spring 2010

  9. Code – property list Command Window figure('Name','Test Window','Position',[100 500 350 350],'MenuBar','none') IS&T Scientific Visualization Tutorial – Spring 2010

  10. MATLAB - Viewing Viewing • the process of displaying a graphical scene from various directions by adjusting the camera position, changing the perspective, changing the aspect ratio, etc. • the particular orientation you set to display the visualization • composed from two basic functions: • positioning the viewpoint to orient the scene – viewfunction • setting the aspect ratio and relative axis scaling – axis function IS&T Scientific Visualization Tutorial – Spring 2010

  11. MATLAB – view function view • the viewpoint is specified by defining azimuth and elevation with respect to the axis origin • azimuth is a polar angle in the x-y plane, with positive angles indicating counterclockwise rotation of the viewpoint. Elevation is the angle above (positive angle) or below (negative angle) the x-y plane. IS&T Scientific Visualization Tutorial – Spring 2010

  12. MATLAB – view function (cont) view • MATLAB automatically selects a viewpoint that is determined by whether the plot is 2-D or 3-D • For 2-D plots, the default is azimuth = 0° and elevation = 90° • For 3-D plots, the default is azimuth = -37.5° and elevation = 30° • view(2) sets the default 2D view, with az = 0, el = 90. • view(3) sets the default 3D view, with az = –37.5, el = 30. • view(az,el) or view([az,el]) set the viewing angle for a 3D view. IS&T Scientific Visualization Tutorial – Spring 2010

  13. Code – view function Command Window Z = peaks(20); figure; h = surf(Z); view([-20,25]); The peaks function is an example function of two variables, obtained by translating and scaling Gaussian distributions. peaks(n) returns an n-by-n matrix The surf function create 3-D surface plots of matrix data. IS&T Scientific Visualization Tutorial – Spring 2010

  14. MATLAB – axis function axis • enables you to adjust the aspect ratio of graphs. • enables you to adjust the scaling of graphs. • axis([xminxmaxyminymaxzminzmax]) sets the limits for the x-axis, y-axis and z-axis of the current axes. • axis vis3d freezes aspect ratio properties to enable rotation of 3-D objects (If you will be interactively rotating the visualization in the figure window you should use the vis3d option.) IS&T Scientific Visualization Tutorial – Spring 2010

  15. Code – axis function Command Window Z = peaks(20); figure; h = surf(Z); view([-20,25]); axis([0 30 0 30 -15 -15]); IS&T Scientific Visualization Tutorial – Spring 2010

  16. MATLAB - Lighting Lighting • enhances the visibility of surface shape and provides a 3D perspective to your visualization. • several commands enable you to position light sources and adjust the characteristics of lit objects: • light - creates a light object • lighting - selects a lighting method • material - sets the reflectance properties of lit objects • camlight - creates or moves a light with respect to the camera position • shading - controls the color shading of surface and patch graphic objects IS&T Scientific Visualization Tutorial – Spring 2010

  17. Code - lighting Command Window Z = peaks(20); figure; h = surf(Z); view(3); axis on; light; lighting phong; camlight('left'); shading interp; IS&T Scientific Visualization Tutorial – Spring 2010

  18. MATLAB – Vis Algorithms • Modeling • Matrix to Surface • Slicing • Scalar • Color Mapping • Contours / Isosurfaces • Vector • Oriented Glyphs • Streamlines IS&T Scientific Visualization Tutorial – Spring 2010

  19. MATLAB – modeling algorithms Matrix to Surface • a surface is defined by the z-coordinates of points above a rectangular grid in the x-y plane. • formed by joining adjacent points with straight lines. • useful for visualizing large matrices. • surf(X,Y,Z) creates a shaded surface using Z for the color data as well as surface height. X and Y are vectors or matrices defining the x and y components of a surface. IS&T Scientific Visualization Tutorial – Spring 2010

  20. Code – surf function Command Window [X,Y] = meshgrid(-3:0.25:3); Z = peaks(X,Y); figure; surf(X,Y,Z); view(3); axis([-3 3 -3 3 -10 10]); grid on; light; lighting phong; camlight('left'); meshgrid(x,y) transforms the domain specified by vectors x and y into arrays X and Y, which can be used to evaluate functions of two variables and three-dimensional mesh/surface plots. meshgrid(x) is the same as [X,Y] = meshgrid(x,x). IS&T Scientific Visualization Tutorial – Spring 2010

  21. MATLAB – modeling algorithms Slicing • a slice is a "cross-section" of the dataset. • any kind of surface can be used to slice the volume. • the simplest technique is to use a plane to define the cutting surface. • slice (X,Y,Z,V,sx,sy,sz) draws slices of the volume V along the x, y, z directions in the volume V at the points in the vectors sx, sy, and sz. X, Y, and Z are 3D arrays specifying the coordinates for V. • the color at each point is determined by 3-D interpolation into the volume V. IS&T Scientific Visualization Tutorial – Spring 2010

  22. Code – slice function Command Window [x,y,z,v] = flow; figure; xslice = 5; yslice = 0; zslice = 0; slice(x,y,z,v,xslice,yslice,zslice); view(3); axis on; grid on; light; lighting phong; camlight('left'); shading interp; The flow dataset represents the speed profile of a submerged jet within an infinite tank (an example of scalar volume data). IS&T Scientific Visualization Tutorial – Spring 2010

  23. MATLAB – scalar algorithms Color Mapping • each scalar value in data set is mapped through a lookup table to a specific color. • the color lookup table is called the colormap • a three-column 2-D matrix • each row of the matrix defines a single color by specifying three values in the range of zero to one (RGB components). • created with either array operations or with one of the several color table generating functions (jet, hsv, hot, cool, summer, and gray). • colormap(map) sets the colormap to the matrix map. IS&T Scientific Visualization Tutorial – Spring 2010

  24. Code – colormap function Command Window [x,y,z,v] = flow; figure; xslice = 5; yslice = 0; zslice = 0; slice(x,y,z,v,xslice,yslice,zslice); view(3); axis([0 10 -4 4 -3 3]); grid on; colormap (flipud(jet(64))); colorbar('vertical'); shading interp; IS&T Scientific Visualization Tutorial – Spring 2010

  25. MATLAB – colormap editor If you want even more control over the color mapping, you can use the colormap editor. You open the colormap editor by selecting Colormap from the Edit menu of the figure. IS&T Scientific Visualization Tutorial – Spring 2010

  26. MATLAB – scalar algorithms Contours / Isosurfaces • constructs a boundary between distinct regions in the data. • contours are lines or surfaces of constant scalar value. • isolines for two-dimensional data and isosurfaces for three-dimensional data. • contour(X,Y,Z,v) draws a contour plot of matrix Z with isolines at the data values specified in the vector v. • isosurface(X,Y,Z,V,isovalue) computes isosurface data from the volume data V at the isosurface value specified in isovalue. The isosurface function connects points that have the specified value the same way isolines connect points of equal elevation. IS&T Scientific Visualization Tutorial – Spring 2010

  27. Code – contour function Command Window [X,Y] = meshgrid(-3:0.25:3); Z = peaks(X,Y); figure; isovalues = (-3.0:0.5:3.0); contour(X,Y,Z,isovalues); view(2); axis on; grid on; IS&T Scientific Visualization Tutorial – Spring 2010

  28. Code – isosurface function Command Window [x,y,z,v] = flow; isovalue = -1; purple = [1.0 0.5 1.0]; figure; p = patch(isosurface(x,y,z,v,isovalue)); isonormals(x,y,z,v,p); set(p,'FaceColor',purple,'EdgeColor','none'); view([-10 40]); axis on; grid on; light; lighting phong; camlight('left'); patch is the low-level graphics function that creates patch graphics objects. A patch object is one or more polygons defined by the coordinates of its vertices. IS&T Scientific Visualization Tutorial – Spring 2010

  29. MATLAB – vector algorithms Oriented Glyphs • draw an oriented, scaled glyph for each vector. • glyphs are polygonal objects such as a cone or an arrow. • orientation and scale of glyph indicate the direction and magnitude of the vector. • glyph may be colored according to vector magnitude or some other scalar value. • coneplot(X,Y,Z,U,V,W,Cx,Cy,Cz) plots vectors as cones or arrows. • X, Y, Z define the coordinates for the vector field • U, V, W define the vector field • Cx, Cy, Cz define the location of the cones in the vector field • coneplot(...,'quiver') draws arrows instead of cones. IS&T Scientific Visualization Tutorial – Spring 2010

  30. Code – coneplot function Command Window load wind; xmin = min(x(:)); xmax = max(x(:)); ymin = min(y(:)); ymax = max(y(:)); zmin = min(z(:)); zmax = max(z(:)); scale = 4; figure; [cx cy cz] = meshgrid(xmin:5:xmax,ymin:5:ymax,zmin:2:zmax); coneplot(x,y,z,u,v,w,cx,cy,cz,scale,'quiver'); view([-35 60]); axis on; grid off; The wind dataset represents air currents over North America. The dataset contains six 3-D arrays: x, y, and z are coordinate arrays which specify the coordinates of each point in the volume and u, v, and w are the vector components for each point in the volume. IS&T Scientific Visualization Tutorial – Spring 2010

  31. MATLAB – vector algorithms Streamlines • the path a massless particle takes flowing through a velocity field (i.e. vector field) • can be used to convey the structure of a vector field by providing a snapshot of the flow at a given instant in time. • multiple streamlines can be created to explore interesting features in the field. • computed via numerical integration (integrating product of velocity times delta T). • streamline(X,Y,Z,U,V,W,startx,starty,startz) draws stream lines from the vector volume data. • X, Y, Z define the coordinates for the vector field • U, V, W define the vector field • startx, starty, startz define the starting positions of the streams IS&T Scientific Visualization Tutorial – Spring 2010

  32. Code – streamline function Command Window load wind; xmin = min(x(:)); xmax = max(x(:)); ymin = min(y(:)); ymax = max(y(:)); zmin = min(z(:)); zmax = max(z(:)); purple = [1.0 0.5 1.0]; figure; [sx sy sz] = meshgrid(xmin,ymin:10:ymax,zmin:2:zmax); h = streamline(x,y,z,u,v,w,sx,sy,sz); set(h,'LineWidth',1,'Color',purple); view([-40 50]); axis on; grid off; IS&T Scientific Visualization Tutorial – Spring 2010

  33. MATLAB - Resources • IS&T tutorials • Introduction to MATLAB • www.bu.edu/tech/research/training/tutorials/matlab/ • Using MATLAB to Visualize Scientific Data www.bu.edu/tech/research/training/tutorials/visualization-with-matlab/ • Websites • www.mathworks.com/products/matlab/ • www.mathworks.com/access/helpdesk/help/techdoc/index.html • www.mathworks.com/academia/student_center/tutorials • Wiki • http://matlabwiki.mathworks.com/ • MATLAB Workshops next week IS&T Scientific Visualization Tutorial – Spring 2010

  34. Getting Started with MATLAB, version 7, The MathWorks, Inc. • Using MATLAB, version 7, The MathWorks, Inc. • Using MATLAB Graphics, version 7, The MathWorks, Inc. • http://www.mathworks.com/access/helpdesk/help/techdoc/index.html Sources IS&T Scientific Visualization Tutorial – Spring 2010

More Related