File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 387387 ;
388388 ; ↑ampl[cosu]'x = ↑ampl[cosu]'n = maxlog(x) - minlog(n) - minlog(z) + 2 (accounting for pi)
389389 ; ↓ampl[cosu]'x = ↓ampl[cosu]'n = 0 <-- maybe can be better
390- (define x (first srcs))
391- (define n (second srcs)) ; n is already a floor(log(n))
390+ (define x (car srcs))
391+ (define n (cdr srcs)) ; n is already a floor(log(n))
392392 (list (cons (- (maxlog x) n (minlog z) -2 ) 0 ))]
393393
394394 [(ival-tanu)
395395 ; Γ[tanu]'x = |x*pi/n * (1 / cos^2(x*pi/n)) / tan(x*pi/n)|
396396 ; ↑ampl[tanu]'x = ↑ampl[tanu]'n = maxlog(x) - minlog(n) + max(|minlog(z)|, |maxlog(z)|) + 3 (accounting for pi)
397397 ; ↓ampl[tanu]'x = ↓ampl[tanu]'n = 0 <-- maybe can be better
398- (define x (first srcs))
399- (define n (second srcs)) ; n is already a floor(log(n))
398+ (define x (car srcs))
399+ (define n (cdr srcs)) ; n is already a floor(log(n))
400400 (list (cons (- (maxlog x) n (- (max (abs (maxlog z)) (abs (minlog z)))) -3 ) 0 ))]
401401
402402 ; TODO
You can’t perform that action at this time.
0 commit comments