getting a warning when executing regarding abs()
This commit is contained in:
parent
03aefe619d
commit
23f657dbbe
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ function micmeter(metersize)
|
||||||
println("Press Ctrl-C to quit")
|
println("Press Ctrl-C to quit")
|
||||||
while true
|
while true
|
||||||
block = read(mic, 512)
|
block = read(mic, 512)
|
||||||
blockmax = maximum(abs(block)) # find the maximum value in the block
|
blockmax = maximum(abs.(block)) # find the maximum value in the block
|
||||||
signalmax = max(signalmax, blockmax) # keep the maximum value ever
|
signalmax = max(signalmax, blockmax) # keep the maximum value ever
|
||||||
print("\r") # reset the cursor to the beginning of the line
|
print("\r") # reset the cursor to the beginning of the line
|
||||||
printmeter(metersize, blockmax, signalmax)
|
printmeter(metersize, blockmax, signalmax)
|
||||||
|
|
Loading…
Reference in a new issue