Posted November 2, 20177 yr Hello, I'm aware of pcs-analysis (which prints data), but I'm looking for a way to collect lists of Forte-style interval vectors into a data structure in order to query them for similarity and difference. Something like: (get-interval-vector '3-1) -> (2 1 0 0 0 0) Is there an easy way to do this? thanks, Michael
November 2, 20177 yr Please check the PCS documents. (pcs '3-1 :type :vector) => (2 1 0 0 0 0) (pcs '(3-1 3-8) :type :vector) => ((2 1 0 0 0 0) (0 1 0 1 0 1))
Create an account or sign in to comment