After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 340386 - bsefextract and bsefcompare should operate on labelled contents
bsefextract and bsefcompare should operate on labelled contents
Status: RESOLVED FIXED
Product: beast
Classification: Other
Component: tools
SVN trunk
Other Linux
: Normal normal
: ---
Assigned To: Stefan Westerfeld
Beast Maintainers
Depends on:
Blocks:
 
 
Reported: 2006-05-02 09:06 UTC by Tim Janik
Modified: 2006-05-15 12:26 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Tim Janik 2006-05-02 09:06:10 UTC
currently, the feature files created by bsefextract contain unlabelled contents similar to:
# time
23.4
# spectrum
0 0 0 0
1 2 1 0
3 4 2 2
# avg-spectrum
1 2 3 4

this should be extended to contain the dimensions of the extracted features so feature files of differing lengths can still be compared, e.g. like:

 # time
time = 23.4;
# spectrum
spectrum[3,4] = {
  { 0 0 0 0 }
  { 1 2 1 0 }
  { 3 4 2 2 }
};
# avg-spectrum
avg-spectrum[4] = { 1 2 3 4 };

(feature file examples courtesy by Stefan Westerfeld)