-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1ee0f38
commit 1c9c65c
Showing
142 changed files
with
4,180 additions
and
260 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | ||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||
|
||
<html xmlns = "http://www.w3.org/1999/xhtml"> | ||
<!-- | ||
SAME AS NELSON SOFTWARE | ||
--> | ||
|
||
<head> | ||
<meta name="generator" content= | ||
"HTML Generated by Nelson"/> | ||
<link rel="stylesheet" type="text/css" href="style.css" /> | ||
<link rel="stylesheet" href="mono-blue.css" type="text/css" /> | ||
<script src = "highlight.pack.js" type = "text/javascript"> | ||
</script> | ||
<script type = "text/javascript">hljs.highlightAll();</script> | ||
</script> | ||
<meta http-equiv="Content-Type" content = "text/html; charset=utf-8" /> | ||
<title>bandwidth</title> | ||
|
||
</head> | ||
<body> | ||
|
||
<div class = "manualnavbar"> | ||
<table width = "100%"><tr> | ||
|
||
<td width="40%" class="center"> | ||
<span class="top"><a href="chapter_linear_algebra.html">Linear algebra</a></span> | ||
</td> | ||
|
||
<td width = "30%" class = "next"> | ||
<span class = "next"><a href = "chol.html">chol >></a></span> | ||
</td> | ||
|
||
</tr></table> | ||
<hr /> | ||
|
||
<h1 class="refname">bandwidth</h1> | ||
<hr/> | ||
|
||
<h3>Lower and upper matrix bandwidth.</h3> | ||
<hr/> | ||
|
||
<h3>Syntax</h3> | ||
<hr/> | ||
|
||
<table summary="syntax" style="width:50%"> | ||
<tr> | ||
<td>[lower, upper] = bandwidth(A)</td> | ||
</tr> | ||
|
||
<tr> | ||
<td>R = bandwidth(A, type)</td> | ||
</tr> | ||
|
||
</table> | ||
|
||
<h3>Input argument</h3> | ||
<hr/> | ||
|
||
<dl> | ||
<dt><span class="term">A</span></dt> | ||
<dd> | ||
<p class="para">Input matrix</p> | ||
</dd> | ||
|
||
<dt><span class="term">type</span></dt> | ||
<dd> | ||
<p class="para">'upper' or 'lower'</p> | ||
</dd> | ||
|
||
</dl> | ||
|
||
<h3>Output argument</h3> | ||
<hr/> | ||
|
||
<dl> | ||
<dt><span class="term">lower, upper</span></dt> | ||
<dd> | ||
<p class="para">lower bandwidth,</p> | ||
</dd> | ||
|
||
<dt><span class="term">R</span></dt> | ||
<dd> | ||
<p class="para">lower or upper bandwidth.</p> | ||
</dd> | ||
|
||
</dl> | ||
|
||
<h3>Description</h3> | ||
<hr/> | ||
|
||
<p></p> | ||
|
||
<p><b>[lower, upper] = bandwidth(A)</b> returns <b>lower</b> and <b>upper</b> bandwidths of matrix <b>A</b>.</p> | ||
|
||
|
||
<h3>Example</h3> | ||
<hr/> | ||
|
||
<pre> | ||
<code class = "nelson">M = [10 -20 40; -50 20 0; 10 0 30] | ||
[lower, upper] = bandwidth(M) | ||
</code> | ||
</pre> | ||
|
||
<h3>See also</h3> | ||
<hr/> | ||
|
||
<p> | ||
<a href = "isbanded.html" class = "link">isbanded</a>.</p> | ||
|
||
<h3>History</h3> | ||
<hr/> | ||
|
||
<table summary = "history" style="width:50%"> | ||
<tr> | ||
<th>Version</th> | ||
<th>Description</th> | ||
</tr> | ||
<tr> | ||
<td>1.0.0</td> | ||
<td>initial version</td> | ||
</tr> | ||
|
||
</table> | ||
|
||
<h3>Author</h3> | ||
<hr/> | ||
|
||
<p>Allan CORNET</p> | ||
|
||
<div class = "manualnavbar"> | ||
<table width = "100%"><tr> | ||
|
||
<td width="40%" class="center"> | ||
<span class="top"><a href="chapter_linear_algebra.html">Linear algebra</a></span> | ||
</td> | ||
|
||
<td width = "30%" class = "next"> | ||
<span class = "next"><a href = "chol.html">chol >></a></span> | ||
</td> | ||
|
||
</tr></table> | ||
<hr /> | ||
|
||
</body> | ||
|
||
</html> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.