There are _NO_ standard sample rate for the samples used in modules. But most often the samples are done on the rate called C-3 (which is about 16574 Hz if you have a PAL machine). Sometimes drums are sampled at A-3 (around 28 kHz), and some sounds are at ~8 kHz or anything else to save space.
上傳時間: 2017-04-14
上傳用戶:稀世之寶039
tms320lf2407a work with at45db161 "trace". buffer 8000 word copy from sram to at45. first page content: num save, to cyclewrite. function: read trace to sram, save trace to at45, read status, and something else
上傳時間: 2014-12-05
上傳用戶:牛津鞋
DragonRaja Client source version 1.4+ this source allow players join in (Hades Warfield or Monsters warfield). When you compile in debug mode, it is GMtool. else compile in release mode, it is Normal player.
標簽: source DragonRaja Warfield Monsters
上傳時間: 2014-01-25
上傳用戶:lxm
how to add arrays * Use of const (constant) values. * Creation of vectors. * Passing vectors as function arguments. * Reading from files of unknown size (monitoring istream status). * Repetitive structures (while and for loops). * The increment operators (++). * Selection structures (if-else statements). * Use of the .size, .empty, .begin, .insert, .erase, .resize, .clear and .swap vector class member functions.
標簽: Creation constant Passing vectors
上傳時間: 2017-04-25
上傳用戶:1079836864
Java has become a confusing world. Five years ago, there were few decisions to make once you started programming in Java—you used AWT for graphical user interfaces, sockets for network programming, and hacked together everything else you needed. Since then, though, the APIs available for the Java language have grown, and grown. . . and grown. Now you can dabble in Swing, servlets, Enterprise JavaBeans (EJB), JavaMail, and more. Additionally, there are now packages of APIs, like the Java 2 Micro Edition (J2ME) and Java 2 Enterprise Edition (J2EE). While these packages seem to be nicely wrapped bundles of useful APIs, they don t help the average developer figure out how to piece together the APIs contained in these packages. Though it s simple to find documentation on the individual APIs, getting the "big picture" is difficult, at best. One of the most interesting, but difficult, aspects of Java today is building Java enterprise applications using the J2EE package.
標簽: confusing decisions become world
上傳時間: 2013-12-30
上傳用戶:haoxiyizhong
實現火星車,全部由java寫成,沒有一個if-else,加上測試文件
上傳時間: 2014-01-06
上傳用戶:xiaoxiang
編譯課上做的小程序,用四種分析方法分別實現(LL1,算符優先,遞歸下降,簡單詞法分析) 完成對正則文法所描述的Pascal語言子集單詞符號的詞法分析程序。 <標識符>→字母︱ <標識符>字母︱ <標識符>數字 <無符號整數>→數字︱ <無符號整數>數字 <單字符分界符> →+ ︱- ︱* ︱ ︱(︱) <雙字符分界符>→<大于>=︱<小于>=︱<小于>>︱<冒號>=︱<斜豎>* <小于>→< <等于>→= <大于>→> <冒號> →: <斜豎> →/ 識別語言的保留字 :begin end if then else for do while and or not
上傳時間: 2014-06-29
上傳用戶:sjyy1001
width = gdk_pixbuf_animation_get_width(ani) height = gdk_pixbuf_animation_get_height(ani) current_frame_list = gdk_pixbuf_animation_get_frames(ani) pixmap = gdk_pixmap_new(w->window, width, height, -1) clean_pixmap = gdk_pixmap_new(w->window, width, height, -1) if (w->style->bg_pixmap[GTK_STATE_NORMAL]) { GdkPixmap *bg = w->style->bg_pixmap[GTK_STATE_NORMAL] GdkGC *gc GdkGCValues values values.tile = bg values.fill = GDK_TILED gc = gdk_gc_new_with_values(w->window, &values, GDK_GC_FILL|GDK_GC_TILE) gdk_gc_set_ts_origin(gc, (w->allocation.width - width)/2, (w->allocation.height-height)/2) gdk_draw_rectangle(clean_pixmap,gc, TRUE, 0, 0, width, height) gdk_gc_destroy(gc) } else { gdk_draw_rectangle(clean_pixmap, w->style->bg_gc[GTK_STATE_NORMAL], TRUE, 0, 0, width, height) }
標簽: gdk_pixbuf_animation_get_height gdk_pixbuf_animation_get_width ani height
上傳時間: 2013-12-26
上傳用戶:thinode
pl0 文法 編譯器 (1)擴充一維整型數組。 擴充var數組:VAR <數組標識名>(<下界>:<上界>)〈下界〉和〈上界〉可用常量標識名。 (2)擴充條件語句的功能使其為:IF<條件>THEN<語句>[else<語句>] (3)增加repeat重復語句: REPEAT<語句>{ <語句>}UNTIL<條件>
上傳時間: 2017-07-18
上傳用戶:R50974
此題目是通過鍵盤來實現密碼輸入是否正確,正確的時候數碼管亮,否則發出報警聲。 判斷是按鍵還是干擾是非常有用的,它體現了一個系統的抗干擾能力。高低電平在瞬間的變換是很正常的,如果沒有這條語句,系統很容易出錯。 其中2秒是由定時器0來完成的。 在程序的定時器中斷中,用switch代替了if else結構,使得程序的可讀性大大增強。 TH0 = (65536-50000) / 256 TL0 = (65536-50000) 256 使得TH0 = 3CH, TL0 = B0H,由于該單片機的晶振為12MHz 因此定時時間就為0.05ms.在定時器中斷服務程序中用FLASH計數,當計數達到40時正好是2秒。
上傳時間: 2014-01-21
上傳用戶:caozhizhi