Last active
April 17, 2022 22:55
-
-
Save achrafsoltani/787ed57c2bda1a1b92f1241e0d8d1997 to your computer and use it in GitHub Desktop.
Getting started with linear regression on Matlab from scratch
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
disp("Initilizing the best Linear Regression Program v1.0\n"); | |
% clear and initialize | |
clear; clc; close all; | |
sprintf("Initilizing paths...\n"); | |
% add paths | |
addpath('./lib'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment