photo

Erandi T. Sandarenu


Last seen: environ 4 ans il y a Actif depuis 2021

Followers: 0   Following: 0

Statistiques

MATLAB Answers

0 Questions
2 Réponses

RANG
258 266
of 301 237

RÉPUTATION
0

CONTRIBUTIONS
0 Questions
2 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
0

RANG
 of 21 206

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG

of 173 611

CONTRIBUTIONS
0 Problèmes
0 Solutions

SCORE
0

NOMBRE DE BADGES
0

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
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 = ...

plus de 4 ans il y a | 0

Réponse apportée
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...

plus de 4 ans il y a | 0