Skip to content

Update NdArray.delete.cs#521

Closed
kamyarba wants to merge 1 commit into
SciSharp:masterfrom
kamyarba:patch-1
Closed

Update NdArray.delete.cs#521
kamyarba wants to merge 1 commit into
SciSharp:masterfrom
kamyarba:patch-1

Conversation

@kamyarba

Copy link
Copy Markdown

NDArray n = np.array([[1, 2, 3],
[4, 5, 6],
[7, 8, 9]]);
n = np.delete(n, [0,2], axis: 0);
n = np.delete(n, [0], axis: 1);

NDArray n = np.array([[1, 2, 3],
                                     [4, 5, 6],
                                     [7, 8, 9]]);
n = np.delete(n, [0,2], axis: 0);
n = np.delete(n, [0], axis: 1);
@Nucs

Nucs commented Jul 17, 2026

Copy link
Copy Markdown
Member

np.delete is now fully supported, thank you.

@Nucs Nucs closed this Jul 17, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants