comparison scripts/polynomial/polyeig.m @ 19629:be7ac98fab43 gui-release

strip trailing whitespace from most source files * NEWS, etc/NEWS.3, libgui/graphics/Backend.h, libgui/graphics/ButtonControl.h, libgui/graphics/EditControl.cc, libgui/graphics/Object.h, libgui/graphics/QtHandlesUtils.cc, libgui/graphics/ToolBarButton.h, libgui/graphics/__init_qt__.cc, libgui/graphics/gl-select.cc, libgui/qterminal/libqterminal/unix/TerminalView.cpp, libgui/qterminal/libqterminal/unix/TerminalView.h, libgui/qterminal/libqterminal/win32/QWinTerminalImpl.cpp, libgui/src/m-editor/file-editor-tab.cc, libgui/src/m-editor/file-editor.cc, libgui/src/m-editor/file-editor.h, libgui/src/m-editor/octave-qscintilla.cc, libgui/src/settings-dialog.cc, libgui/src/shortcut-manager.cc, libgui/src/workspace-view.cc, libinterp/corefcn/graphics.cc, libinterp/corefcn/input.cc, libinterp/parse-tree/pt-unop.cc, liboctave/array/dSparse.h, scripts/pkg/pkg.m, scripts/polynomial/polyeig.m, test/io.tst: Strip trailing whitespace.
author John W. Eaton <jwe@octave.org>
date Tue, 20 Jan 2015 09:43:29 -0500
parents fe689210525c
children 4197fc428c7d
comparison
equal deleted inserted replaced
19628:fe689210525c 19629:be7ac98fab43
26 ## @code{@var{C}(s) = @var{C0} + @var{C1} s + @dots{} + @var{Cl} s^l} 26 ## @code{@var{C}(s) = @var{C0} + @var{C1} s + @dots{} + @var{Cl} s^l}
27 ## polyeig solves the eigenvalue problem 27 ## polyeig solves the eigenvalue problem
28 ## @code{(@var{C0} + @var{C1} + @dots{} + @var{Cl})v = 0}. 28 ## @code{(@var{C0} + @var{C1} + @dots{} + @var{Cl})v = 0}.
29 ## 29 ##
30 ## Note that the eigenvalues @var{z} are the zeros of the matrix polynomial. 30 ## Note that the eigenvalues @var{z} are the zeros of the matrix polynomial.
31 ## @var{z} is a row vector with @var{n*l} elements. @var{v} is a matrix 31 ## @var{z} is a row vector with @var{n*l} elements. @var{v} is a matrix
32 ## (@var{n} x @var{n}*@var{l}) with columns that correspond to the 32 ## (@var{n} x @var{n}*@var{l}) with columns that correspond to the
33 ## eigenvectors. 33 ## eigenvectors.
34 ## 34 ##
35 ## @seealso{eig, eigs, compan} 35 ## @seealso{eig, eigs, compan}
36 ## @end deftypefn 36 ## @end deftypefn