- 英
- sequence、thread
- 関
- 結果、シークエンス、シーケンス、順序、通す、配列、配列決定、連続、糸
WordNet
- remove facial hair by tying a fine string around it and pulling at the string; "She had her eyebrows threaded"
- a fine cord of twisted fibers (of cotton or silk or wool or nylon etc.) used in sewing and weaving (同)yarn
- pass a thread through; "thread a needle"
- pass through or into; "thread tape"; "thread film"
- determine the order of constituents in; "They sequenced the human genome"
- a following of one thing after another in time; "the doctor saw a sequence of patients" (同)chronological sequence, succession, successiveness, chronological succession
- film consisting of a succession of related shots that develop a given subject in a movie (同)episode
- serial arrangement in which things follow in logical order or a recurrent pattern; "the sequence of names was alphabetical"; "he invented a technique to determine the sequence of base pairs in DNA"
- several repetitions of a melodic phrase in different keys
- arrange in a sequence
PrepTutorEJDIC
- 〈U〉〈C〉(縫ったり,織ったりするための)『糸』 / 〈C〉(…の)糸状の物,細長い物《+of+名》 / 〈C〉(話などの)『筋道』,脈絡《+of+名》 / ねじ筋,ねじ山 / 〈針など〉‘に'『糸を通す』 / 〈真珠など〉‘を'糸でつなぐ / …‘を'縫うように進む / …‘に'ねじ山をつける / 縫うように進む / (煮詰まったシロップが)糸を引く,細い糸状になる
- 〈U〉〈C〉(時間の上の,また因果関係のつながりによる)『連続』,続き / 〈C〉《a~》(…の)一連のもの《+『of』+『名』》 / 〈U〉(起こる)『順序』(order),筋道 / 〈C〉(…に対する)結果《+『to』+『名』》
UpToDate Contents
全文を閲覧するには購読必要です。 To read the full text you will need to subscribe.
Japanese Journal
- ブックガイド 被災地現場と向き合う研究者たちが見出した、なりわい再生の筋道 濱田武士・小山良太・早尻正宏著 福島に農林漁業をとり戻す
- 第8分科会 説明の筋道をよみとるための活動のあり方について
- 「文章を書く力」をめぐる課題と指導 ― 大学一回生の作文分析から ―
- 大阪総合保育大学紀要 = Osaka University of Comprehensive Children Education (9), 29-42, 2015-03-20
- NAID 120005682057
Related Links
- すじみち【筋道】とは。意味や解説、類語。1 物事がそうなっているわけ。事の条理。道理。「―を立てて話す」2 物事を行うときの正しい順序。「―を踏んで事を進める」 - goo国語辞書は27万語以上を収録。政治・経済・医学・ITなど ...
- デジタル大辞泉 - 筋道の用語解説 - 1 物事がそうなっているわけ。事の条理。道理。「―を立てて話す」2 物事を行うときの正しい順序。「―を踏んで事を進める」
Related Pictures
★リンクテーブル★
[★]
- 英
- sequence、arrangement、array、constellation、arrange、sequential
- 関
- 協定、経時的、系列、結果、シークエンス、シーケンス、順序、準備、筋道、整列、取り計らう、配置、配列決定、連続、連続的、逐次、結果としての、時系列、並べる、アレイ、順次、整理
array_unique()
for ( $i = 0 ; $i < 5 ; $i++ ) {
$a['w'][$i] = $i+100;
$a['m'][$i] = 1;
}
for ( $i = 5 ; $i < 15 ; $i++ ) {
$a['w'][$i] = $i+100;
$a['m'][$i] = 2;
}
for ( $i = 15 ; $i < 20 ; $i++ ) {
$a['w'][$i] = $i+100;
$a['m'][$i] = 3;
}
$a['w'][5]=100;
$a['w'][15]=100;
var_dump($a);
$b = array_unique($a['w']); #配列 重複キー 消去
var_dump($b);
-----
array(2) {
["w"]=> array(20)
{
[0]=> int(100) [1]=> int(101) [2]=> int(102) [3]=> int(103) [4]=> int(104) [5]=> int(100) [6]=> int(106) [7]=> int(107) [8]=> int(108) [9]=> int(109) [10]=> int(110) [11]=> int(111) [12]=> int(112) [13]=> int(113) [14]=> int(114) [15]=> int(100) [16]=> int(116) [17]=> int(117) [18]=> int(118) [19]=> int(119) }
["m"]=> array(20)
{
[0]=> int(1) [1]=> int(1) [2]=> int(1) [3]=> int(1) [4]=> int(1) [5]=> int(2) [6]=> int(2) [7]=> int(2) [8]=> int(2) [9]=> int(2) [10]=> int(2) [11]=> int(2) [12]=> int(2) [13]=> int(2) [14]=> int(2) [15]=> int(3) [16]=> int(3) [17]=> int(3) [18]=> int(3) [19]=> int(3) } }
array(18) {
[0]=> int(100) [1]=> int(101) [2]=> int(102) [3]=> int(103) [4]=> int(104) [6]=> int(106) [7]=> int(107) [8]=> int(108) [9]=> int(109) [10]=> int(110) [11]=> int(111) [12]=> int(112) [13]=> int(113) [14]=> int(114) [16]=> int(116) [17]=> int(117) [18]=> int(118) [19]=> int(119) }
配列の要素の除去
array_pop
- 配列のインデックスから、末尾にあるインデックス1つを取り除く。指定した変数の配列が空だった場合には、null が帰される。
配列の結合
- 1. +演算子。同じキーを上書きする。
- 2. array_push(array, array)とすると、出力が array([0]->array, [1]->array)になる。
- 3. array_match(out_array, add_array)これでokだが、add_array = array();だとエラーが起こるので、適当なトラップが必要。 ← array_mergeの間違えでしょ?
配列要素の結合
$str = implode('/',$array);
配列の要素表示
[★]
- 英
-
- 関
- 一連、系、継続、継続性、継続的、稽留、系列、結果、シークエンス、シーケンス、シリーズ、持続性、持続的、順序、筋道、存続、続く、続ける、配列、配列決定、頻繁、連続性、連続的、絶えず、持続型、連発
[★]
- 英
- result、consequence、product、sequence、outcome、output、resultant
- 関
- 意義、帰する、帰着、産出量、産物、シークエンス、シーケンス、出力、重要性、順序、筋道、生成物、成績、排出量、配列、配列決定、拍出量、予後、連続、成績体、製品、結果として生じる、成果、研究結果、事象、転帰、成り行き
[★]
- 関
- a sequence of、arrange、arrangement、array、barrage、consecutive、consequence、constellation、continually、continue、continuous、order、ordinal、outcome、output、product、result、resultant、sequencing、sequential、serial、series、thread
[★]
- 英
- order、sequence、ordinal
- 関
- オーダー、結果、シークエンス、シーケンス、指令、順番、筋道、配列、配列決定、要求、連続、桁、目、次数、命令、秩序
[★]
- 英
- street, meatus
- 関
- 管、街路、街角