Maths for Machine Learning
Hello Readers, I am re-starting my blogging today from a long break and this time I going to start with some interesting topics of mathematics which is going to helpful for Machine Learning or Data science, we also use Jupyter notebook to demonstrate the maths calculations with python. For today we are going to have a look at scalar, vector, matrices and tensor. What is scalar? Scalar is a single real number or value can be considered as scalar. Any real number or value that able to show any information is scalar. ex: temperature, weight, length etc. For computer programing you can consider a numeric variable as a scalar. i.e : int number1=10; A scalar have only magnitude (size/quantity) but no direction. What is Vector? Vector is an array of numbers, either in a row or in a column, which can be identified by index. For computer programing we can consider an array or list or set as vector. Integer numbers[] = new Integer[10]; List<Integers> listOfNumbers