Linear algebra is a branch of mathematics which is foundational to machine learning. Mastering it acts as the starting point to seeing data more beautifully.
A great write up. An effective description of Scalar and Vectors.
An aside: The print statements written as f strings look much more elegant and are easier to follow:
print("x has value {} and is of type {} and has shape {}".format(x,type(x),len(x)))
print(f"x has value {x} and is of type {type(x)} and has shape {len(x)}.")
I find the f strings more intuitive to follow.
Pranay Pallav
A great write up. An effective description of Scalar and Vectors.
An aside: The print statements written as f strings look much more elegant and are easier to follow:
print("x has value {} and is of type {} and has shape {}".format(x,type(x),len(x)))
print(f"x has value {x} and is of type {type(x)} and has shape {len(x)}.")
I find the f strings more intuitive to follow.
Pranay Pallav