We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PnToneはintervalとBaseToneを引数にもつが、intervalを引数とする場合にBaseToneが固定されている。 https://github.com/nyatla/TBSKmodem/blob/master/tbskmodem/kokolink/protocol/tbsk/toneblock.py
固定する場合のBaseToneは矩形波として、トーン長とintervalを指定する形式にしたほうが良い。
The text was updated successfully, but these errors were encountered:
以下の3種類のAPIに統一する。
@classmethod @overload def createPn(cls,seed:int,interval:int,base_tone:TraitTone)->PnTone: ... @classmethod @overload def createPn(cls,seed:int,interval:int,length:int)->PnTone: """ seedのPN符号を使用して、interval単位でPN符号を適応した長さlengthのトーン信号を得る。 """ ... @classmethod @overload def createPn(cls,seed:int,length:int)->PnTone: """ seedのPN符号を使用して、1tickごとにPN符号を適応した長さlengthのトーン信号を得る。 """
seedの初期値は299とする。
Sorry, something went wrong.
https://github.com/nyatla/TBSKmodem/issues/18
f3d19d5
PnToneパラメータの変更
・FunctionsのIterable変換関数の修正
e181ce0
・nyatla/TBSKmodem#19 に関する修正。 →IterableとIteratorをkokolink配下から除外。 ・nyatla/TBSKmodem#18 に関する修正
No branches or pull requests
PnToneはintervalとBaseToneを引数にもつが、intervalを引数とする場合にBaseToneが固定されている。
https://github.com/nyatla/TBSKmodem/blob/master/tbskmodem/kokolink/protocol/tbsk/toneblock.py
固定する場合のBaseToneは矩形波として、トーン長とintervalを指定する形式にしたほうが良い。
The text was updated successfully, but these errors were encountered: