Changeset 1176 for trunk/src/uvmat.m


Ignore:
Timestamp:
Mar 12, 2025, 12:35:15 PM (2 days ago)
Author:
sommeria
Message:

background image introduced for civ1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/uvmat.m

    r1175 r1176  
    43854385                C=reshape(double(B),1,nxy(1)*nxy(2));% reshape in a vector
    43864386                Histo.histo(:,col)=hist(C, Histo.(FieldName));  %calculate histogram
    4387                 if isequal(get(handles.LogLinHisto,'Value'),2)
    4388                     PlotParam.Type='semilogx';
    4389                 else
    4390                     PlotParam.Type='plot';
     4387                switch get(handles.LogLinHisto,'Value')
     4388                    case 1
     4389                        PlotParam.Type='plot';
     4390                    case 2
     4391                    PlotParam.Type='semilogy';
     4392                    case 3
     4393                       PlotParam.Type='semilogx';
     4394                    case 4
     4395                    PlotParam.Type='loglog';
    43914396                end
    43924397            end
Note: See TracChangeset for help on using the changeset viewer.