This commit is contained in:
Ingmar Steiner 2015-01-05 17:08:15 +01:00
Родитель ea7b12571c
Коммит bf6b76b31f
10 изменённых файлов: 3 добавлений и 9 удалений

Просмотреть файл

@ -203,7 +203,7 @@ public class DrawHistogram extends javax.swing.JFrame {
}// </editor-fold>//GEN-END:initComponents
private void changeBandWidth(javax.swing.event.ChangeEvent evt) {// GEN-FIRST:event_changeBandWidth
// TODO add your handling code here:
// TODO add your handling code here:
try {
int bwSlide = bandwidth.getValue();
this.jLabel2.setText(Integer.toString(bwSlide));

Просмотреть файл

@ -120,5 +120,4 @@ public class ContourTreeInspector {
}
}

Просмотреть файл

@ -334,5 +334,4 @@ public class MaryCARTWriter {
if (pw != null) pw.println();
}
}
}

Просмотреть файл

@ -300,5 +300,4 @@ public class GVModelSet {
}
}
}

Просмотреть файл

@ -258,5 +258,4 @@ public class CARTDurationModeller extends InternalModule {
}
return duration;
}
}

Просмотреть файл

@ -272,5 +272,4 @@ public class CARTF0Modeller extends InternalModule {
output.setDocument(doc);
return output;
}
}

Просмотреть файл

@ -232,5 +232,4 @@ public class PolynomialF0Modeller extends InternalModule {
}
return coeffs;
}
}

Просмотреть файл

@ -295,5 +295,4 @@ public class SoPF0Modeller extends InternalModule {
output.setDocument(doc);
return output;
}
}

Просмотреть файл

@ -655,5 +655,4 @@ public class VocalizationSelector {
return Float.NaN;
}
}

Просмотреть файл

@ -110,6 +110,7 @@ public class AudioDestination {
byteLength / audioFormat.getFrameSize());
}
}
/**
* Convert the audio data into an AudioInputStream of the proper AudioFormat. This method assumes that the audio data starts
* with a valid audio file header, so the audio format is read from the data.
@ -136,6 +137,7 @@ public class AudioDestination {
return AudioSystem.getAudioInputStream(f);
}
}
public static void plot(double[] x) {
plot(x, false);
}