- 英
- series、lineage、serial、sequential、paradigmatic
- 関
- 一連、系、経時的、系統、血統、シリーズ、配列、連続、連続性、連続的、逐次、結果としての、パラダイム、時系列、系譜、順次
WordNet
- pertaining to or occurring in or producing a series; "serial monogamy"; "serial killing"; "a serial killer"; "serial publication"
- a serialized set of programs; "a comedy series"; "the Masterworks concert series" (同)series
- of or relating to the sequential performance of multiple operations; "serial processing" (同)in series, nonparallel
- pertaining to or composed in serial technique; "serial music"
- related as members of a substitution class; "paradigmatic word associations"
- of or relating to a grammatical paradigm; "paradigmatic inflection"
- of or relating to a typical example; "paradigmatic learning"
- (electronics) connection of components in such a manner that current flows first through one and then through the other; "the voltage divider consisted of a series of fixed resistors"
- a periodical that appears at scheduled times (同)serial, serial publication
- (mathematics) the sum of a finite or infinite sequence of expressions
- (sports) several contests played successively by the same teams; "the visiting team swept the series"
- a group of postage stamps having a common theme or a group of coins or currency selected as a group for study or collection; "the Post Office issued a series commemorating famous American entertainers"; "his coin collection included the complete series of
- similar things placed in order or happening one after another; "they were investigating a series of bank robberies"
- the descendants of one individual; "his entire lineage has been warriors" (同)line, line of descent, descent, bloodline, blood_line, blood, pedigree, ancestry, origin, parentage, stemma, stock
PrepTutorEJDIC
- (雑誌などの)連載物;定期刊行物;(テレビ・ラジオなどの)続き物,連続物 / 続き物の,連続物の / 連続している,順次の
- 引き続いて起こる,結果として起こる
- 模範の,実例の / (文法で)語形変化の
- (関連のあるもの・同種のものの)(規則的な)『連続』,一続き《+『of』+『名』》 / (同種の貨幣・切手などの)一組(set)《+『of』+『名』》 / (テレビ番組などの)連続物;(出版物の)双書,シリーズ / (電気の)直列 / (電気が)直列の
- 血統,家系 / 《集合的に》子孫,一族
Wikipedia preview
出典(authority):フリー百科事典『ウィキペディア(Wikipedia)』「2017/08/04 08:36:35」(JST)
[Wiki ja表示]
系列(けいれつ)
- 系列 - 系統立てて並べられた物事のまとまり。
- 企業系列 - 企業間のつながりの形態。
- 系列会社、系列企業 - 上記と子会社、関連会社も参照。
- 系列 (テレビドラマ) - 1993年に放送された日本のテレビドラマ。
関連項目
|
このページは曖昧さ回避のためのページです。一つの語句が複数の意味・職能を有する場合の水先案内のために、異なる用法を一覧にしてあります。お探しの用語に一番近い記事を選んで下さい。このページへリンクしているページを見つけたら、リンクを適切な項目に張り替えて下さい。 |
UpToDate Contents
全文を閲覧するには購読必要です。 To read the full text you will need to subscribe.
Japanese Journal
- 顧客の身体的属性情報を用いた商品推薦システムのためのスマート買い物カゴの開発
- 杉本 広大,高瀬 和之,増田 彬,前川 卓也
- 情報処理学会研究報告. UBI, [ユビキタスコンピューティングシステム] 2015-UBI-46(6), 1-8, 2015-05-04
- … 属性を推定し,その属性に応じた商品を推薦するシステムを提案する.提案システムでは,買い物カゴの持ち手に無線加速度センサノードを設置し,加速度時系列データの収集とデジタルサイネージへの転送を行う.デジタルサイネージでは加速度時系列データから属性推定を行い,顧客属性に応じた推薦品を提示する.これにより,さりげなく顧客属性の推定を行うことができ,顧客の嫌悪感を減らすことが可 …
- NAID 110009895729
- 車部品メガ化への胎動 動き出す系列(ケイレツ)再編 (特集 トヨタ! 進撃再開) -- (トヨタ、充電完了! : 最強企業の危機と再生)
- 分解レポート ダイハツ工業「ムーヴ」(上)パワートレーンは系列企業が中心
Related Links
- ASCII.jpデジタル用語辞典 - 系列の用語解説 - 表計算ソフトなどにおいて、グラフ上で処理される、関連するデータの集まり。ワークシート上では、行や列を基準として表現される。
- 「系列」とは - 一定の順序に従い並べられた物事のまとまり。また、企業間などの結合関係。*1 *1:系列 国語辞書 - エキサイト 翻訳 ... 関連リンク・検索・共有 系列の関連リンク・検索・共有 「系列」をYahoo!オークションで探す ...
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);
配列の要素表示
[★]
- 英
-
- 関
- 一連、系、継続、継続性、継続的、稽留、系列、結果、シークエンス、シーケンス、シリーズ、持続性、持続的、順序、筋道、存続、続く、続ける、配列、配列決定、頻繁、連続性、連続的、絶えず、持続型、連発
[★]
-
- It is not a rare disease; in one series it accounted for between 5 and 24 admissions per year at a pediatric hospital.(HIM.2128)
- 関
- a line of、a sequence of、a series of、barrage、consecutive、continually、continue、continuous、lineage、paradigmatic、sequence、sequential、serial、strain、system
[★]
- 英
- continuous、sequential、serial、successive、continual、continuously、progressively、serially、successively
- 関
- 経時、経時的、継続的、稽留、系列、進行性、持続性、持続的、配列、頻繁、連続、連続性、逐次、結果としての、時系列、順次、持続型
[★]
- 英
- chronological、chronologic、time-dependent、sequential、chronologically、sequentially
- 関
- 経時、系列、結果的、時間依存的、配列、連続的、逐次、結果としての、時系列、経日的、年代順、順次
[★]
- 英
- time series study
- 関
- 研究デザイン
- 過去50年間の我が国の脳血管死亡率を経年的に調べたところ、昭和40年頃をピークに減少を続けていることが分かった → 仮説「昭和40年頃から塩分摂取抑制などの食生活の改善が進んできたのではないか?」
[★]
- 英
- lyotropic series、lyotropic
- 関
- リオトロピック、濃度転移型
[★]
- 英
- germline mutation、germ-line mutation
[★]
- 英
- serial dilution
- 関
- 段階希釈
[★]
- 英
- row、tier、train
- 関
- 作条、訓練、層、連、段