Main public logs
From Master of Neuroscience Wiki
Combined display of all available logs of Master of Neuroscience Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 12:39, 17 October 2025 Davrot talk contribs created page Concatenate Matrices and arrays (Created page with "== The goal == Questions to [mailto:davrot@uni-bremen.de David Rotermund] == numpy.concatenate == <syntaxhighlight lang="python">numpy.concatenate((a1, a2, ...), axis=0, out=None, dtype=None, casting="same_kind")</syntaxhighlight><blockquote>Join a sequence of arrays along an existing axis.</blockquote><syntaxhighlight lang="python">import numpy as np a = np.arange(0, 5) print(a) # -> [0 1 2 3 4] print(a.shape) # -> (5,) b = np.arange(0, 8) print(b) # -> [0 1 2 3 4...") Tag: Visual edit