Changeset 73 for trunk/src/plot_field.m


Ignore:
Timestamp:
Mar 30, 2010, 11:50:35 PM (14 years ago)
Author:
sommeria
Message:

ima2vol: provides volume images in 16 bit (presently needed for the software 3D3C)
set_grid: small bug repairs
uvmat: small bug repairs.
civ: bug repair following previous changes (RUN and BATCH functions merged)
plot_field: cleaning of parameter transmission. Introduction of a parameter handle of a text box (not yet used)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/plot_field.m

    r72 r73  
    455455end
    456456if test_newplot && ~isequal(plotstr,'plot(')
    457     plotstr=[plotstr '''tag'',''plot_line'')']
     457    plotstr=[plotstr '''tag'',''plot_line'');'];
    458458                %execute plot (instruction  plotstr) 
    459459    eval(plotstr)
     
    914914    vec_U=reshape(vec_U,1,numel(vec_U));
    915915    vec_V=reshape(vec_V,1,numel(vec_V));
    916     MinMaxX=max(vec_X)-min(vec_X)
    917     MinMaxY=max(vec_Y)-min(vec_Y)
     916    MinMaxX=max(vec_X)-min(vec_X);
     917    MinMaxY=max(vec_Y)-min(vec_Y);
    918918    AxeData.Mesh=sqrt((MinMaxX*MinMaxY)/length(vec_X));
    919919    if  ~isfield(PlotParam.Vectors,'AutoVec') || isequal(PlotParam.Vectors.AutoVec,0)|| ~isfield(PlotParam.Vectors,'VecScale')...
Note: See TracChangeset for help on using the changeset viewer.