octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #38558] Bug in function @lti/feedback


From: anonymous
Subject: [Octave-bug-tracker] [bug #38558] Bug in function @lti/feedback
Date: Wed, 20 Mar 2013 20:13:27 +0000
User-agent: Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.22 (KHTML, like Gecko) Chrome/25.0.1364.172 Safari/537.22

URL:
  <http://savannah.gnu.org/bugs/?38558>

                 Summary: Bug in function @lti/feedback
                 Project: GNU Octave
            Submitted by: None
            Submitted on: Wed 20 Mar 2013 08:13:25 PM UTC
                Category: Octave Forge Package
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: Incorrect Result
                  Status: None
             Assigned to: None
         Originator Name: Jack Olivieri
        Originator Email: address@hidden
             Open/Closed: Open
         Discussion Lock: Any
                 Release: 3.6.2
        Operating System: GNU/Linux

    _______________________________________________________

Details:

The function doesn't correctly perform the check on the system blocks
dimensions (see function documentation before proceeding).
The check should make sure that the 'feedout' indeces don't exceed the
dimension of the output of 'sys1', namely the forward block for the feedback
function. Instead, the function performs that check on the local variable
'feedin'.

What the function DOES:
/usr/share/octave/packages/control-2.3.52/@lti/feedback.m:line 131

if (any (feedin > p1 | feedin < 1))
%etc.
endif


What the function SHOULD DO:
/usr/share/octave/packages/control-2.3.52/@lti/feedback.m:line 131

if (any (feedout > p1 | feedout < 1))
%etc.
endif






    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?38558>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]