輸入楽譜ヴァイオリン楽譜ネット 楽譜販売 楽譜通販

999けんのSTEPのQ&A   1/50

スポンサードリンク

ページ: | 次へ » 最後へ »»

赤、青、黄の3状態からなるステートマシンの作成silosで以下のソースコードを実行し、結果を表示したのですが何が言いたいのかよくわかりません。解答、解説をお願いします。// 交通信号機のステートマシンmodule traffic_lights( clock, reset ); input clock, reset; reg [1:0] light; reg [3:0] cntr; // 状態の定義 parameter red = 'b00, blue = 'b01, yellow = 'b10; // 各状態の持続時間 parameter REDcount = 'h7, BLUEcount = 'h5, YELLOWcount = 'h1;// ステートマシンの定義always @(posedge clock ) if ( reset ) begin light <= red; // 初期値は赤 cntr <= REDcount; // 赤の時間をセット end else case (light) red: begin // ライトが赤の時 if ( cntr == 0 ) begin light <= blue; cntr <= BLUEcount; end else cntr <= cntr-1; end blue: begin // ライトが青の時 if ( cntr == 0 ) begin light <= yellow; cntr <= YELLOWcount; end else cntr <= cntr-1; end yellow: begin // ライトが黄の時 if ( cntr == 0 ) begin light <= red; cntr <= REDcount; end else cntr <= cntr-1; end default: begin light <= red; // 変な状態は赤へ cntr <= REDcount; end endcaseendmodule以下にこのソースコードのシミュレータを示します。// 交通信号機のシミュレーション記述`timescale 1s / 1smodule sim; reg clock, reset; parameter STEP = 30; always #(STEP/2) clock = ~clock; traffic_lights traffic_lights( clock, reset ); initial begin #0 clock = 0; reset = 1; #STEP reset = 0; #(STEP*80) #STEP $finish; end endmoduleどうかよろしくお願いします、お力を貸してください。...

2012-05-26
解答、続きを読む


silosを用いた4ビット・ジョンソン・カウンタの記述の仕方が分かりません、ジョンソン・カウンタ(1ビット)は以下のソースコードで動きます。どのように書き換えたらよろしいでしょうか?// ジョンソン・カウンタ(同期リセット)2. Module johnson_cnt( ck, res, q );3. input ck, res;4. output [3:0] q;5. reg [3:0] q;6.7. always @( posedge ck ) begin8. if ( res )9. q <= 4'h0;10. else begin11. q <= q << 1;12. q[0] <= ~q[3];13. end14. end15.16. endmoduleまたその場合シミュレータのソースコードはこれで動きますか?// ジョンソン・カウンタ シミュレーション記述2.3. `timescale 1ps/1ps4.5. module johnson_tp;6. reg ck, res;7. wire [3:0] q;8.9. parameter STEP = 100000;10.11. always #(STEP/2) ck = ~ck;12.13.14. /* 4ビット ジョンソン・カウンタ(同期リセット) */15. johnson_cnt johnson( ck, res, q );16.17. initial begin18. ck = 0; res = 0;19. #STEP res = 1;20. #STEP res = 0;21. #(STEP*10)22. res = 1;23. #STEP $display("Bad Loop");24. res = 0;25. johnson.q[1] = 1;26. // johnson.q[2] = 1;27. #(STEP*12)28. $finish;29. end30.31. initial $monitor( $stime, " ck=%b res=%b q=%b", ck, res, q );32.33. endmodule...

2012-05-26
解答、続きを読む


step Maniaで、曲を入れる際に「songs」を開く・・・のように聞いたのですが、どうしてもsongsがある場所が分かりません。songsのある場所や、手順など教えてくだされば嬉しいです...

2012-05-26
解答、続きを読む


数学4 STEPの問題を教えてください;;数学Ⅰです。月曜日提出なのですが学校に置いてきてしまったのでどのたか問題を教えていただけると助かります…。P.10~11の問題を教えてください…。...

2012-05-26
解答、続きを読む


温暖化仮説は誤りだった?(Financial Post紙)オーストラリアのB.Carter先生の新聞コラム記事(5月23日)を読むと、温暖化仮説は誤りだった? → → →“”Taken together, these two temperature records indicate that no significant warming trend has occurred since 1958, though both exhibit a 0.2C step increase in average global temperature across the strong 1998 El Nino. In addition, the recently quiet Sun, and the lack of warming over at least the last 15 years — and that despite a 10% increase in atmospheric carbon dioxide level, which represents 34% of all post-industrial emissions — indicates that the alarmist global warming hypothesis is wrong and that cooling may be the greatest climate hazard over coming decades. “”上記中、「Alarmistの温暖化仮説」 は誤りであった、と書いて居られるのですが、これでご異議はございませんか?...

2012-05-26
解答、続きを読む


三宮のあたりでレッドウイングのクリームとかを取り扱っている店を知りませんか?ABCマートとかSTEPにはなかったのですが…...

2012-05-26
解答、続きを読む


KARAの曲、STEPの歌詞の日本語訳をお願いします!!...

2012-05-26
解答、続きを読む


みんなで違反報告してください。同じ質問ばかり、許せないですよね?http://my.chiebukuro.yahoo.co.jp/my/myspace_quedetail.php?writer=step_up_0811&flg=0...

2012-05-26
解答、続きを読む


翻訳お願いします!taking the GED is one step toward makingyour life work the way you want it to .toward以降がどう訳したらいいのか分かりません。 special thanks to Adam Robinson ,who conceived of and perfected the Joe Bloggs approach to standardized tests of and のところがどう訳したらいいのかわからないです。できれば2つお願いしますm(__)m...

2012-05-26
解答、続きを読む


ダンス未経験者が、2週間でKARAのSTEPのサビを踊る事は出来ますか?今まで踊ったことも無く、全くの素人です因みに31歳女性です...

2012-05-26
解答、続きを読む


ワタナベエンターテインメントのお笑い部門のオーディションライブ,STEP! STEP! STEP!のシステムを具体的に教えてください。どういうふうな感じで所属が決まるんでしょうか…?...

2012-05-25
解答、続きを読む


BASICでDIMのとある使い方に困っています。ポケットコンピュータのマニュアルでプログラムに「DIM A$(0)*16」ってあって文字列であることは解るのですが「*16」の意味がわかりません。宜しくお願い致します。ポケコンのマニュアルで、「文字列”ABCDE54321”を入力して”12345EDCBA”と表示するプログラムをつくりなさい。」とあります。解答は10 DIM A$(0)*16,B$(0)*1020 INPUT"A$=";A$(0)30 B$(0)=""40 FOR I=10 TO 1 STEP -150 C$=MID$(A$(0),I,1)60 B$(0)=B$(0)+C$70 NEXT B$(0)80 PRINT I90 ENDとなっています。DIMについてはDIM(10)やDIM(10,10)などが、それぞれ10個、100個のデータに対応していることぐらいは理解できるぐらいの基本的な知識しかありません。10行目から何のことかさっぱり解りません。どなたか解説して頂きたく、質問いたしました。よろしくお願いいたします。...

2012-05-25
解答、続きを読む


スンヨンって毎回顔が違いますね!髪型やメイクだけで毎回曲によって表情が変わる気がします他の4人はそんなに変わる印象ないのにスンヨンだけは時々別人みたいに見えます個人的には眉が隠れるぐらい前髪を作ってる時が一番好きですGO GO SUMMERの頃や、STEPのPV、一番はウインターマジックのPVのスンヨンはドツボです皆さんはどのスンヨンが好きですか?...

2012-05-25
解答、続きを読む


わかりやすい翻訳お願いします。できれば5月27日の日曜日までにおねがいします。Newspaper agencies in Japan collect old newspapers so that the paper can be recycled. Customers appreciate this service because they do not have to carry the heavy newspapers to a trash collection site. Also, they get rolls of toilet paper in return for their old newspapers. Newspaper companies introduced this system because the use of recycled paper keeps costs down. Also, re-using paper in this way protects the environment by decreasing the number of trees needed to make paper. Recycling paper is thus good for consumers, businesses, and the environment. But how exactly are old newspapers turned into recycled paper. First, the paper is taken to a paper mill, which is a place where paper is made. The old newspapers are put into a large container full of water and chemicals. The newspapers are then cut into small pieces, and then the water, paper and chemical mixture is heated. The heat helps the chemicals break the paper down into fibers. After some time the mixture becomes a think soup known as "pulp." Foreign materials are then removed from the pulp by forcing it through screens of various sizes. The screens filter out any glue, pieces of plastic or other items that need to be taken out. The next step in the process is to remove the ink from the pulp, which is done by rinsing the pulp with a lot of water: Any remaining ink is then removed by using chemicals that act like soap. In general, the chemicals clean the pulp and get it ready be turned back into paper. Although the process of recycling paper uses a lot of energy and many chemicals, making paper from trees would take much more energy. Thus, if it were not possible to recycle paper, we would have to use many more trees than we do now, and we would have to use a lot more energy to turn the wood from all those trees into paper. So be sure to recycle paper whenever possible-- it's eco-friendly and helps keep the cost of paper low....

2012-05-24
解答、続きを読む


英文和訳ですが全然できず止まっていますご協力お願いします^^;The image of personal air transportation is one of irresistible simplicity. Step into your garage, climb into your vehicle, and in moments you can be zipping through the skies on a journey free of potholes, toll booths, traffic jams, and stoplights. Every journey could be by the most direct route possible, literally “as the crow flies.” Remote areas without roads―or with roads too steep, rough, or winding for ordinary cars―would be as accessible as the heart of downtown. This image has been part of popular culture virtually since the invention of flight in the early twentieth century. Flying cars―actually, coupes with detachable wings and tails that turned them into airplanes-enjoyed limited popularity and extensive press coverage in the United States between 1945 and 1960. Designers are currently pursuing a half-dozen major flying car projects, of which Paul Moller’s M400 Skycar (computer-controlled and capable of vertical takeoffs) is the best known. The technology of flying cars has changed, but the dream underlying them has not. transportation=means of transport irresistible simplicity 魅力的で抵抗できないぐらい単純明快in moments=immediately be zipping through the skies on a journey 大空へヒューっと飛び出すthe most direct route possible 可能な限りの最短ルート“as the crow flies” 一直線にcoupes クーペ型自動車M400 Skycar 開発中の空飛ぶ車の呼称...

2012-05-24
解答、続きを読む


【エクセル】どうしても動きません。採点して下さい。【マクロ】Sub 確認() Dim Sn1 As Worksheet, Sn2 As Worksheet Dim maxrow1 As Long, maxrow2 As Long Dim i As Long, j As Long Application.ScreenUpdating = False Set Sn1 = ThisWorkbook.Sheets("あいまい確認") Set Sn2 = ThisWorkbook.Sheets("不要データ") maxrow1 = Sn1.Cells(Rows.Count, 12).End(xlUp).Row maxrow2 = Sn2.Cells(Rows.Count, 1).End(xlUp).Row For i = 1 To maxrow2 For j = maxrow1 To 1 Step -1 If Sn1.Cells(j, 12) = Sn2.Cells(i, 1) Then Sn1.Cells(j, 14).Value = "必要" Else Sn1.Cells(j, 11).ClearContents Next j Next i Set Sn1 = Nothing Set Sn2 = Nothing Application.ScreenUpdating = True End Sub~~~~~~~~~~~~~~~~~~やりたいことは”不要データシート”のA列と、”あいまい確認シート”のL列を照らし合わせ 一致すれば、、”あいまい確認シート”のM列該当行に「必要」と記入、 一致しなければ、、”あいまい確認シート”のK列の該当行の文字をクリア以上です。M列にはきちんと「必要」と記入されますが、K列が消したい行だけではなく、全て消えてしまいます。どなたかお助けお願いします。よければ以下参考にしてください。★結果★になるようにしたいです。(不要データシート)A列ABCDE(あいまい確認シート)K列●L列●M列111●B●(空)111●C●(空)111●F●(空)111●G●(空)111●Z●(空)★結果★(あいまい確認シート)K列●L列●M列111●B●必要111●C●必要(空)●F●(空)(空)●G●(空)(空)●Z●(空)...

2012-05-24
同一データが見つかれば不要データチェックループをやめないから当然です。一例です。Sub 確認()Dim Sn1 As Worksheet, Sn2 As WorksheetDim maxrow1 As Long, maxrow2 As LongDim i As LongApplication.ScreenUpdating = FalseSet Sn1 = ThisWorkbook.Sheets("あいまい確認")Set Sn2 = ThisWorkbook.Sheets("不要データ")maxrow1 = Sn1.Cells(Rows.Count, 12).End(xlUp).Rowmaxrow2 = Sn2.Cells(Rows.Count, 1).End(xlUp).RowFor i = 1 To maxrow2If Application.CountIf(Sn2.Range("a1:a" & maxrow2), Sn1.Cells(i, 12)) Then Sn1.Cells(i, 14).Value = "必要" Else Sn1.Cells(i, 11).ClearContents End IfNext iSet Sn1 = NothingSet Sn2 = NothingApplication.ScreenUpdating = TrueEnd Sub...
解答、続きを読む


【VBA】離散フーリエ変換プログラムを解読して欲しい現在,離散フーリエ変換プログラムを解読しています.しかし,初心者のため解読できません.どなたか,知恵のある方解読をしてコメント下さい.このコードは,どのようなことをしているといったコメントで構いません.アウトラインが掴めればいいのですが・・・・・.------------------------------m = 10n = 2^m = 1024m_inv = 0 (DFT処理を指定)xw() = 測定データyw() = 空配列------------------------------Sub fft(m_inv As Integer)' m_inv 0 = DFT' 1 = Inverse DFTDim l1, l2, n1, n2 As IntegerDim a, b, c, s1, s2, w As Double' n1 = n - 1 For l = 1 To m l1 = 2 ^ (m - l + 1): l2 = l1 / 2 a = 1: b = 0 c = Cos(PAI / l2): d = -Sin(PAI / l2) If m_inv = 1 Then d = -d For i = 0 To l2 - 1 For j = i To n1 Step l1 k = j + l2 s1 = xw(j) - xw(k): s2 = yw(j) - yw(k) xw(j) = xw(j) + xw(k): yw(j) = yw(j) + yw(k) xw(k) = s1 * a - s2 * b: yw(k) = s2 * a + s1 * b Next j w = a * c - b * d: b = b * c + a * d: a = w Next i Next l n2 = n / 2: l = n2 For k = 1 To n1 - 1 If k < l Then w = xw(l): xw(l) = xw(k): xw(k) = w w = yw(l): yw(l) = yw(k): yw(k) = w End If i = n2 Do Until i >= l + 1 l = l - i: i = i / 2 Loop l = l + i Next k If m_inv = 1 Then For k = 0 To n1 xw(k) = xw(k) / n yw(k) = yw(k) / n Next k End IfEnd Subお願い致します....

2012-05-24
解答、続きを読む


ナノさんの愛迷エレジーをカタカナ表記して頂けませんか歌詞There you were, looking so unsurea bitter laugh as you wiped your tearslost again, you were lost againProbaly, wouldn't you agreeI words inside my head go 'round and'roundSave me now,would you save me nowhad enough of this hide and seekwring my heart like dirty ragthe fear inside is taking over everythingfeels so threateningtrembling as I try to breathea sad demise, I will close my eyeswatch me fall'Cause what I feared the most wat drowning in too deepI don't know how to swim in this insanityand the words you speak keep washing over meas I keep styuggling to try and stay aliveI found a way I conld run awaysoundlessly I would whisper "sorry""No regrets, I have no regrets"exeuses just keep piling upAnother step, take another stepwith each step you will fall awayremembering all the memoriesand watching as they break to piecesFale, a game of love and hate, I'll giveand you will taketake away the air I breathebut wait, it could be a mistake, or is it reallyfateis it always one or the other?Dive, a dive into your mindtogether we will find and erase away your sednereIf I conld take away all the tears you cryI wouldn't hesitate to be your sacrificeand if you lose your mind to the pain insidethen I would bleed for you, I would pay the pricebut in this crazy world where every thing's a lieand you are all alone with no where leftto gothen I would pray for you, right by your sidethis I promise you until the day we die...

2012-05-24
解答、続きを読む


FOX BS238の、SEX AND THE CITYが始まる前に流れる男性の外人さんの声の曲名を知っておられる方がいらっしゃれば、是非是非教えて下さいm(_ _)m聴き取りが何となく「step by.step by…」と聞こえるような気がしまhttp://music.yahoo.co.jp/answers/...

2012-05-23
「Sex Bomb」 歌:Tom Jones これのことですか?http://www.youtube.com/watch?v=Ec3jIipfBqs...
解答、続きを読む


英文和訳ですが全然できず止まっていますご協力お願いします^^;The image of personal air transportation is one of irresistible simplicity. Step into your garage, climb into your vehicle, and in moments you can be zipping through the skies on a journey free of potholes, toll booths, traffic jams, and stoplights. Every journey could be by the most direct route possible, literally “as the crow flies.” Remote areas without roads―or with roads too steep, rough, or winding for ordinary cars―would be as accessible as the heart of downtown. This image has been part of popular culture virtually since the invention of flight in the early twentieth century. Flying cars―actually, coupes with detachable wings and tails that turned them into airplanes-enjoyed limited popularity and extensive press coverage in the United States between 1945 and 1960. Designers are currently pursuing a half-dozen major flying car projects, of which Paul Moller’s M400 Skycar (computer-controlled and capable of vertical takeoffs) is the best known. The technology of flying cars has changed, but the dream underlying them has not. transportation=means of transport irresistible simplicity 魅力的で抵抗できないぐらい単純明快 in moments=immediately be zipping through the skies on a journey 大空へヒューっと飛び出す the most direct route possible 可能な限りの最短ルート “as the crow flies” 一直線に coupes クーペ型自動車 M400 Skycar 開発中の空飛ぶ車の呼称...

2012-05-23
解答、続きを読む


ページ: | 次へ » 最後へ »»

スポンサードリンク

もう一つのSTEPのQ&A

STEPをYahoo!検索
STEPをイメージ検索
STEPをAmazonで検索

お薦め音楽教室

カワイ音楽教室盛岡センター
岩手県 盛岡市中央通1丁目11-15/地図 /tel: 0120-778644
英語スクール、電子オルガン教室、音楽教室、絵画教室、ギター教室、スポーツ教室、声楽教室、バイオリン教室、ピアノ教室、フルート教室、幼児音楽教室
(社)才能教育研究会東海事務所スズキ・メソード
愛知県 名古屋市東区東桜1丁目10-3/地図 /tel: 052-951-1352
音楽教室、バイオリン教室、ピアノ教室、フルート教室、幼児音楽教室、幼児教室
江崎バイオリン教室
愛知県 名古屋市北区八龍町1-43-205/地図 /tel: 052-755-8926
ドイツのオペラ劇場オーケストラで9年間演奏していました。
レッスンの経験も豊富です。

子供から大人まで初心者の方でも楽しめるレッスンを目指しています。
個人レッスン(30分又は45分)
音楽教室、バイオリン教室
(有)原楽器築地センター
熊本県 玉名市築地1962-1/地図 /tel: 0968-72-5883
電子オルガン教室、音楽教室、ドラム教室、バイオリン教室、ピアノ教室、フルート教室
スフィア音楽事務所
島根県 松江市比津町6-6/地図 /tel: 0852-26-1541
音楽教室、バイオリン教室、幼児音楽教室
1263 楽譜 1263 English Suite No.2 A minor BWV807 楽譜 English Suite No.2 A minor BWV807 9677 楽譜 9677 3つのヴァオリン 楽譜 3つのヴァオリン ホルスト 惑星jupiter 楽譜 ホルスト 惑星jupiter Lichtenthal 楽譜 Lichtenthal DElibes Lakme 楽譜 DElibes Lakme RIP slyme 楽譜 RIP slyme tchaikovsky 四季 楽譜 tchaikovsky 四季 アントニオ 楽譜 アントニオ 楽譜 いつかのメリークリスマス 楽譜 いつかのメリークリスマス テイルズシリーズ 楽譜 テイルズシリーズ dopperu 楽譜 dopperu Joseph Jongen Aria et Polonaise 楽譜 Joseph Jongen Aria et Polonaise 大学祝典序曲 楽譜 大学祝典序曲 嵐が丘 楽譜 嵐が丘 楽譜 愛のアイサツ 楽譜 愛のアイサツ グルジア 楽譜 グルジア

2011/10/08 今日のおすすめ楽譜



ガリアードの楽譜もいかがですか?
モーセの楽譜もいかがですか?
初心者むけ伴奏CD付き楽譜 音楽教室を無料でご紹介 音楽雑貨
Chausson
協奏曲