Mlrengine: Difference between revisions
Jump to navigation
Jump to search
imported>Jeremy (Importing text file) |
imported>Jeremy |
||
| (2 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
===Purpose=== | ===Purpose=== | ||
Multiple Linear Regression computational engine. | Multiple Linear Regression computational engine. | ||
===Synopsis=== | ===Synopsis=== | ||
:reg = mlrengine(x,y,options) | :reg = mlrengine(x,y,options) | ||
===Description=== | ===Description=== | ||
Inputs are an x-block x, y-block y and optional options structure. | Inputs are an x-block x, y-block y and optional options structure. | ||
Output is the matrix of regression vectors reg. | Output is the matrix of regression vectors reg. | ||
===Options === | ===Options === | ||
'''options''' = a structure array with the following fields. | |||
* '''display''': [ {'off'} | 'on'] Governs screen display to command line. | * '''display''': [ {'off'} | 'on'] Governs screen display to command line. | ||
* '''ridge''': [ 0 ] ridge parameter to use in regularizing the inverse. | * '''ridge''': [ 0 ] ridge parameter to use in regularizing the inverse. | ||
===See Also=== | ===See Also=== | ||
[[analysis]], [[pcr]], [[pls]] | [[analysis]], [[pcr]], [[pls]] | ||
Latest revision as of 14:15, 9 June 2014
Purpose
Multiple Linear Regression computational engine.
Synopsis
- reg = mlrengine(x,y,options)
Description
Inputs are an x-block x, y-block y and optional options structure.
Output is the matrix of regression vectors reg.
Options
options = a structure array with the following fields.
- display: [ {'off'} | 'on'] Governs screen display to command line.
- ridge: [ 0 ] ridge parameter to use in regularizing the inverse.