numpyのconcatenate関数
2022-02-16 14:49:13
concatenate((a1, a2, ...), axis=0) 配列連結関数
パラメータ
a1,a2......は縫合する配列です。
axisはステッチする次元、デフォルトは0
>>> a = np.array([[1, 2], [3, 4]])
>>> b = np.array([[5, 6]])
>>> np.concatenate((a, b), axis=0)
array([[1, 2],
[3, 4],
[5, 6]])
>>> np.concatenate((a, b.T), axis=1)
array([[1, 2, 5],
[3, 4, 6]])
関連
-
[Python] error could not broadcast input array from shape (26) into shape (26,1)
-
python マルチスレッド操作エラー。logger "websocket "のハンドラが見つかりませんでした。
-
np.random.multivariate_normalメソッド解析
-
TypeError: 'numpy.ndarray' オブジェクトが呼び出し可能でないエラー処理
-
[Pythonノート】spyderのClearコマンド
-
TypeError: 'str' と 'int' のインスタンスの間で '<' はサポートされていません。
-
Python error TypeError: 'type' object is not subscriptable
-
Pythonのsum関数でTypeError: unsupported operand type(s) for +: 'int' and 'list' エラーを解決する。
-
Pythonのエラーについて。TypeError: += でサポートされていないオペランドタイプ: 'builtin_function_or_method' および 'int' です。
-
Solve UnicodeDecodeError: 'ascii' codec can't decode byte 0xba in position 31: ordinal not in range(128)
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
AttributeError: 'mywindow' オブジェクトには 'setCentralWidget' という属性がありません。
-
Ubuntu pip AttributeError: 'module' オブジェクトに '_main' 属性がない。
-
Pythonのエラーです。ModuleNotFoundError: pygame'という名前のモジュールはありません。
-
ImportError を解決します。pandas をインストールした後に 'pandas' という名前のモジュールがない。
-
Python3 xlsxwriterモジュールのインストール
-
Python ランタイムエラー, raise notImplementedError
-
TypeError: 'dict_keys' オブジェクトはインデックス作成をサポートしていません。
-
'dict_items' オブジェクトは添え字を付けることができません。
-
TypeError: write() の引数はバイトではなく str でなければならない Python3 でバイナリファイルを書き込む方法とエラーの原因
-
[解決済み] です。TypeError: read() missing 1 required positional argument: 'filename'.