|
From: | anonymous |
Subject: | [Octave-patch-tracker] [patch #10102] [octave forge] (statistics) Add new functions ismissing and rmmissing |
Date: | Mon, 30 Aug 2021 05:30:47 -0400 (EDT) |
User-agent: | Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36 |
URL: <https://savannah.gnu.org/patch/?10102> Summary: [octave forge] (statistics) Add new functions ismissing and rmmissing Project: GNU Octave Submitted by: None Submitted on: Mon 30 Aug 2021 09:30:45 AM UTC Category: Forge : new function Priority: 5 - Normal Status: None Privacy: Public Assigned to: None Originator Email: s.guidoni@virgilio.it Open/Closed: Open Discussion Lock: Any _______________________________________________________ Details: These are the functions ismissing and rmmissing, for finding and removing missing data from a set (vector, matrix etc.). I am not sure about the package they belong to. Example: octave:1> a = [1 2 3 NaN 4 5 NaN 7 8]; octave:2> ismissing(a) ans = 0 0 0 1 0 0 1 0 0 octave:3> rmmissing(a) ans = 1 2 3 4 5 7 8 _______________________________________________________ File Attachments: ------------------------------------------------------- Date: Mon 30 Aug 2021 09:30:45 AM UTC Name: ismissing.m Size: 4KiB By: None <http://savannah.gnu.org/patch/download.php?file_id=51836> ------------------------------------------------------- Date: Mon 30 Aug 2021 09:30:45 AM UTC Name: rmmissing.m Size: 5KiB By: None <http://savannah.gnu.org/patch/download.php?file_id=51837> _______________________________________________________ Reply to this item at: <https://savannah.gnu.org/patch/?10102> _______________________________________________ Message sent via Savannah https://savannah.gnu.org/
[Prev in Thread] | Current Thread | [Next in Thread] |