Changes in python/ext/ufuncs.c [e3c4d00:a138975]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/ext/ufuncs.c
re3c4d00 ra138975 59 59 }; 60 60 61 // Note: these docstrings should *not* include the function signatures 62 63 static char Py_unwrap2pi_doc[] = "" 64 "\n" 65 "Map angle to unit circle :math:`[-\\pi, \\pi[`.\n" 66 "\n" 67 "Parameters\n" 68 "----------\n" 69 "x : numpy.ndarray\n" 70 " input array\n" 71 "\n" 72 "Returns\n" 73 "-------\n" 74 "numpy.ndarray\n" 75 " values clamped to the unit circle :math:`[-\\pi, \\pi[`\n" 76 ""; 61 static char Py_unwrap2pi_doc[] = "map angle to unit circle [-pi, pi["; 77 62 78 63 static void* Py_unwrap2pi_data[] = { … … 83 68 }; 84 69 85 static char Py_freqtomidi_doc[] = "" 86 "\n" 87 "Convert frequency `[0; 23000[` to midi `[0; 128[`.\n" 88 "\n" 89 "Parameters\n" 90 "----------\n" 91 "x : numpy.ndarray\n" 92 " Array of frequencies, in Hz.\n" 93 "\n" 94 "Returns\n" 95 "-------\n" 96 "numpy.ndarray\n" 97 " Converted frequencies, in midi note.\n" 98 ""; 70 static char Py_freqtomidi_doc[] = "convert frequency to midi"; 99 71 100 72 static void* Py_freqtomidi_data[] = { … … 103 75 }; 104 76 105 static char Py_miditofreq_doc[] = "" 106 "\n" 107 "Convert midi `[0; 128[` to frequency `[0, 23000]`.\n" 108 "\n" 109 "Parameters\n" 110 "----------\n" 111 "x : numpy.ndarray\n" 112 " Array of frequencies, in midi note.\n" 113 "\n" 114 "Returns\n" 115 "-------\n" 116 "numpy.ndarray\n" 117 " Converted frequencies, in Hz\n" 118 ""; 77 static char Py_miditofreq_doc[] = "convert midi to frequency"; 119 78 120 79 static void* Py_miditofreq_data[] = {
Note: See TracChangeset
for help on using the changeset viewer.