Skip to content Skip to sidebar Skip to footer
Showing posts with the label C++

Sine Wave That Exponentialy Changes Between Frequencies F1 And F2 At Given Time/amount Of Samples

I'm trying to implement Python method that generates sine wave, which ramps up between two freq… Read more Sine Wave That Exponentialy Changes Between Frequencies F1 And F2 At Given Time/amount Of Samples

Cctalk Coin Acceptor No Reaction When Coin Inserted

I write Linux application that is supposed to handle coins insertations (let's say that for now… Read more Cctalk Coin Acceptor No Reaction When Coin Inserted

Numpy/capi Error With Import_array() When Compiling Multiple Modules

I am trying to compile a C++ module to use in scipy.weave that is composed of several headers and s… Read more Numpy/capi Error With Import_array() When Compiling Multiple Modules

How To Create A Custom Python Exception Type In C Extension?

I'm writing a Python module in C. I need to report errors that can't be described by built-… Read more How To Create A Custom Python Exception Type In C Extension?

Running C In A Browser

I've spent days of research over the seemingly simple question: is it possible to run C code in… Read more Running C In A Browser

Call Python Function In C Code

i written small code like addition for two numbers in python. addition.py def add(a,b): c=… Read more Call Python Function In C Code