Changeset 2691


Ignore:
Timestamp:
12/01/09 12:10:16 (15 years ago)
Author:
Mathieu Morlighem
Message:

fixed options_structure

Location:
issm/trunk/src/m/classes/public/plot
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/classes/public/plot/plot_overlay.m

    r2647 r2691  
    7979%hue
    8080%cut results under 1.5, and log
     81save data_grid data_grid
    8182data_grid(find(data_grid<1.5))=1.5;
    8283h=bytscl(log(data_grid))/(255+1); %1 offset on colormap
  • issm/trunk/src/m/classes/public/plot/plot_riftvel.m

    r2439 r2691  
    1 function plot_riftvel(md,options_structure,width,i);
     1function plot_riftvel(md,options,width,i);
    22%PLOT_RIFTVEL - plot rift velocity
    33%
    44%   Usage:
    5 %      plot_riftvel(md,options_structure,width,i);
     5%      plot_riftvel(md,options,width,i);
    66%
    77%   See also: PLOTMODEL
     
    7979
    8080%apply options
    81 options=addfielddefault(options_structure,'title','Rift Velocities');
    82 options=addfielddefault(options_structure,'colorbar',0);
    83 applyoptions(md,[],options_structure);
     81options=addfielddefault(options,'title','Rift Velocities');
     82options=addfielddefault(options,'colorbar',0);
     83applyoptions(md,[],options);
Note: See TracChangeset for help on using the changeset viewer.