bugGNU Octave - Bugs: bug #50216, missing "width" and...

 
 

bug #50216: missing "width" and "height" function

Submitter:  None
Submitted:  Fri 03 Feb 2017 08:12:10 AM UTC
   
 
Category:  Octave Function Severity:  3 - Normal
Priority:  5 - Normal Item Group:  Feature Request
Status:  Invalid / Not an Octave Bug Assigned to:  None
Originator Name:  Franklin Yu Originator Email:  -email is unavailable-
Open/Closed:  * Closed Release:  * 4.2.0
Operating System:  * Any Fixed Release:  None
Planned Release:  None
* Mandatory Fields

Add a New Comment Rich Markup
   

Fri 03 Feb 2017 12:44:41 PM UTC, comment #1: 

Hi,
The functions you are looking for are "columns" and "rows" in Octave. Now the "width" and "height" functions in ML don't do what you say: they are both methods of "table" objects which are not implemented in Octave (see bug #44571).

Closing report as invalid.

Pantxo Diribarne <pantxo>
Group Member
Fri 03 Feb 2017 08:12:10 AM UTC, original submission:  

The width and height in MATLAB is missing in Octave. It should be just aliases:


function w = height(X)
    w = size(X, 1);
end


and


function h = width(X)
    h = size(X, 2);
end


Anonymous

 

(Note: upload size limit is set to 16384 kB, after insertion of the required escape characters.)

Attach Files:
   
   
Comment:
   

No files currently attached

 

Depends on the following items: None found

Items that depend on this one: None found

 

Carbon-Copy List
  • -email is unavailable- added by pantxo (Posted a comment)
  • -email is unavailable- added by None (Submitted the item)
  •  

    There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.

    Only group members can vote.

     

    Follow 2 latest changes.

    Date Changed by Updated Field Previous Value => Replaced by
    2017-02-03 pantxo Open/ClosedOpen Closed
    2017-02-03 pantxo StatusNone Invalid / Not an Octave Bug

    Back to the top

    Powered by Savane 3.13-caa5.
    Corresponding source code