Marlon Schumacher
6 days ago 7ae4f2f25c9264111a9bd19ac5b3c953dec6d330
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
; ****************************************************************
; | OM-SRR, 2023-2025 M.Schumacher                               |
; |                                                              |
; | Library for spectral rhythm modeling via integer time ratios |
; | (partials) as phase-aligned amplitude modulations.           |
; |                                                              |
; | See https://steffenkrebber.de/research/sinusoidal-run-rhythm/|
; ****************************************************************
;
;This program is free software; you can redistribute it and/or
;modify it under the terms of the GNU General Public License
;as published by the Free Software Foundation; either version 2
;of the License, or (at your option) any later version.
;
;See file LICENSE for further informations on licensing terms.
;
;This program is distributed in the hope that it will be useful,
;but WITHOUT ANY WARRANTY; without even the implied warranty of
;MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;GNU General Public License for more details.
;
;You should have received a copy of the GNU General Public License
;along with this program; if not, write to the Free Software
;Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,10 USA.
;
;Authors: M. Schumacher
 
(in-package :om)
 
 
 
; GEN-PARTIAL
 
(defmethod! gen-partial (subdivision &key (precision 0.01) (decimals 5))
 
            :icon 988   
            :initvals '(2 0.01 5)
            :indoc '("subdivision" "precision" "decimals")
            :numouts 2
 
  (let* ((sampled-function (multiple-value-list   
                            (om-sample #'cos (* subdivision precision) 0 (* subdivision (* 2 pi)) decimals)))
         (x-points (second sampled-function))
         (y-points (third sampled-function)))
 
    (values (om/ x-points subdivision) y-points)
    )
  )
 
; example 
 
; (gen-partial 8)
 
 
; GEN-SRR 
    
(defmethod! gen-srr (&rest subdivisions)
 
            :icon 988  
            :initvals '(nil)
            :indoc '("subdivisions")
            :numouts 2
            (let ((valuelist (mat-trans
                   (loop for sub in subdivisions 
                         collect (multiple-value-list (gen-partial sub))))))
 
              
              (values (caar valuelist) 
                      (om* (expt 0.5 (length subdivisions)) 
                           (om+ (length subdivisions) ;(apply 'om+ (second valuelist)))))
                                (loop for i from 0 to (1- (length (car (second valuelist)))) 
                                      collect (reduce '+  (loop for list in (second valuelist) collect (nth i list)))
                                      ))  
                           )
                      )
              )
            )
 
; legacy method
 
(defmethod! gen-srr_2 (subdivision1 subdivision2 &key (precision 0.01) (decimals 5))
 
            ;:icon 141  
            ;:initvals '(0 0.1 5)
            ;:indoc '("subdivision" "sampling-factor" "decimals")
            :numouts 2
 
  (let* ((pointlist1 (multiple-value-list (gen-partial subdivision1 :precision precision :decimals decimals)))
         (pointlist2 (multiple-value-list (gen-partial subdivision2 :precision precision :decimals decimals)))
         )
    (values (first pointlist1)
            (om* 0.25 (om+ 2 (om+ (second pointlist1) (second pointlist2))))
            )
    )
  )
 
 
; polar-plot
 
(defmethod! polar-plot ((srr bpf))
  :icon 988 
  (let* ((xpoints (x-points srr))
         (ypoints (y-points srr))
         (x-factor (/ 360.0 (* 2 pi)))
         (polar-values (multiple-value-list (ad->xy (om* x-factor xpoints) ypoints))))
    (simple-bpf-from-list (first polar-values) (second polar-values) 'bpc (decimals srr))
    )
  )
    
       
 
; output the object or the point lists
; optionally output cartesian or polar representation
 
 
; Computation of Farey-Sequence
; A Farey sequence of order n is the sequence of irreducible fractions between 0 and 1 that have denominators less than or equal to n, arranged in increasing order.
 
(defun farey-sequence (n)
  "Compute the Farey sequence of order n."
  (let ((fractions '()))
    (loop for denominator from 1 to n
          do (loop for numerator from 1 to denominator
                   when (and (>= numerator 0) (<= numerator denominator)
                             (= 1 (gcd numerator denominator)))
                   do (push (cons numerator denominator) fractions)))
    (sort fractions (lambda (a b)
                      (let ((num-a (car a)) (den-a (cdr a))
                            (num-b (car b)) (den-b (cdr b)))
                        (< (* num-a (float den-b)) (* num-b (float den-a))))))
    ))
 
;; Example usage
(print (farey-sequence 5))
(farey-sequence 5)