At least for my display it seems to make it more consistent when switching
display modes.  I would prefer not to have to change gain when changing
display modes.  So when I switch from Current to Cumulative the spectrum
level looks the same.
Not sure why just that one entry should be *2.5 when the others are not.
73
Mike W9MDB



On Thu, Dec 17, 2015 at 9:15 AM, Joe Taylor <[email protected]> wrote:

> Please explain why removing the 2.5 factor is preferable to moving the
> "Spectrum gain" slider down a tad.
>
> On 12/17/2015 9:57 AM, Michael Black wrote:
> > I made a small change to plotter.cpp which works for me to better see low
> > level signals and not blow up the big guns so much.
> >
> > I submitted this a while ago but nobody commented on it.  Mathematically
> > it's just a linear change but when plotting the 2.5 multiple is over
> > exaggerating big signals.
> >
> > Simple enough:
> >
> > --- plotter.cpp (revision 6287)
> > +++ plotter.cpp (working copy)
> > @@ -161,7 +161,7 @@
> >         }
> >         m_sum[i]=sum;
> >       }
> > -    if(m_bCumulative) y2=2.5*gain2d*(m_sum[i]/m_binsPerPixel +
> > m_plot2dZero);
> > +    if(m_bCumulative) y2=gain2d*(m_sum[i]/m_binsPerPixel +
> m_plot2dZero);
> >       if(m_Flatten==0) y2 += 15;                      //### could do
> better!
> > ###
> >
> >       if(m_bLinearAvg) {                                   //Linear Avg
> > (yellow)
> >
> >
> >
> >
> >
> ------------------------------------------------------------------------------
> >
> >
> >
> > _______________________________________________
> > wsjt-devel mailing list
> > [email protected]
> > https://lists.sourceforge.net/lists/listinfo/wsjt-devel
>
>
> ------------------------------------------------------------------------------
> _______________________________________________
> wsjt-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/wsjt-devel
>
------------------------------------------------------------------------------
_______________________________________________
wsjt-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wsjt-devel

Reply via email to