@@ -1462,12 +1462,12 @@ def __init__(self, psdnorm, nperseg, nbins, twindec, parent=None):
1462
1462
self .psdnpersegspinbox .setSingleStep (10 )
1463
1463
self .psdnpersegspinbox .setEnabled (True )
1464
1464
self .psdnpersegspinbox .setValue (nperseg )
1465
- self .psdnpersegspinbox .setToolTip ("When esimtating power spectral density using Welch's method the signal\n "
1466
- "is dived into overlapping segments and psd is estimated for each segment\n "
1465
+ self .psdnpersegspinbox .setToolTip ("When estimating power spectral density using Welch's method the signal\n "
1466
+ "is divided into overlapping segments and psd is estimated for each segment\n "
1467
1467
"and then averaged. The overlap is half of the segment length. The \n "
1468
1468
"psd-estimate is smoother with shorter segments." )
1469
1469
psdlayout = QHBoxLayout ()
1470
- psdlayout .addWidget (QLabel ("Length of segment used when estimating power spectral density" ))
1470
+ psdlayout .addWidget (QLabel ("Length of segment used when estimating power spectral density * " ))
1471
1471
psdlayout .addStretch (1 )
1472
1472
psdlayout .addWidget (self .psdnpersegspinbox )
1473
1473
layout .addLayout (psdlayout )
@@ -1494,14 +1494,15 @@ def __init__(self, psdnorm, nperseg, nbins, twindec, parent=None):
1494
1494
self .twindecspinbox .setValue (twindec )
1495
1495
self .twindecspinbox .setToolTip ("Number of decimals in the data processing time window from/to boxes." )
1496
1496
twindeclayout = QHBoxLayout ()
1497
- twindeclayout .addWidget (QLabel ("Number of decimals in data processing time window *" ))
1497
+ twindeclayout .addWidget (QLabel ("Number of decimals in data processing time window ** " ))
1498
1498
twindeclayout .addStretch (1 )
1499
1499
twindeclayout .addWidget (self .twindecspinbox )
1500
1500
layout .addLayout (twindeclayout )
1501
1501
1502
1502
# help text
1503
1503
helptext = QHBoxLayout ()
1504
- helptext .addWidget (QLabel ("* Close and re-open application for this setting to have effect" ))
1504
+ helptext .addWidget (QLabel ("* Parameter 'nperseg' in scipy.signal.welch \n (signal length is used if smaller than specified value)\n "
1505
+ "** Close and re-open application for this setting to have effect" ))
1505
1506
helptext .addStretch (1 )
1506
1507
layout .addLayout (helptext )
1507
1508
0 commit comments