I have an input matrix of 17X4 and output matrix of 17X8, is there any method to fit regression with these many input and outputs together?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
A problem with multiple input and multiple output regression
0 Kommentare
Antworten (1)
John D'Errico
am 9 Dez. 2016
Can you solve the problem with 4 inputs and 1 output? I hope so. Just use backslash.
Then solve it 8 times. WTP? Loops are not always a bad thing.
In fact, backslash is effectively vectorized for you already, in that
coefs = inputs\outputs;
actually solves the problem you asked about.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Linear Regression finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!