Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

16
LINES

< > BotCompany Repo | #1018631 // spectro_minMaxValues

JavaX fragment (include)

!include once #1018630 // Spectro Edit

static Pair<Double> spectro_minMaxValues(Clip clip) ctex {
  double min = Double.POSITIVE_INFINITY, max = Double.NEGATIVE_INFINITY;
  
  for (int col = 0; col < clip.getFrameCount(); col++) {
    net.bluecow.spectro.Frame f = clip.getFrame(col);
    for (int row = 0; row < f.getLength(); row++) {
      double d = f.getReal(row);
      min = min(min, d);
      max = max(max, d);
    }
  }
  
  ret pair(min, max);
}

Author comment

Began life as a copy of #1018580

download  show line numbers  debug dex  old transpilations   

Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, irmadwmeruwu, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1018631
Snippet name: spectro_minMaxValues
Eternal ID of this version: #1018631/1
Text MD5: c8edcefc8c51dcf3dd0248a2472f3d40
Author: stefan
Category: javax / audio analysis
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2018-10-08 01:51:39
Source code size: 474 bytes / 16 lines
Pitched / IR pitched: No / No
Views / Downloads: 193 / 248
Referenced in: [show references]