Statistica
MATLAB Answers
0 Domande
2 Risposte
RANK
249.459
of 300.781
REPUTAZIONE
0
CONTRIBUTI
0 Domande
2 Risposte
ACCETTAZIONE DELLE RISPOSTE
0.00%
VOTI RICEVUTI
0
RANK
of 171.031
CONTRIBUTI
0 Problemi
0 Soluzioni
PUNTEGGIO
0
NUMERO DI BADGE
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Risposto
Help with linear regression function
This was done by using the backslash operator. function [a b] = lin_reg(x,y) matrix = [x; ones(1,length(x))]'; x = ...
Help with linear regression function
This was done by using the backslash operator. function [a b] = lin_reg(x,y) matrix = [x; ones(1,length(x))]'; x = ...
circa 4 anni fa | 0
Risposto
Help with linear regression function
This was done without using backslash operator. But it works! function [a b] = lin_reg(x,y) X = mean(x); Y = mean...
Help with linear regression function
This was done without using backslash operator. But it works! function [a b] = lin_reg(x,y) X = mean(x); Y = mean...
circa 4 anni fa | 0
