#beginner
Read more stories on Hashnode
Articles with this tag
For dataframes import pandas as pd Date...
This notes are valid for both Octave and MATLAB% for comments. CALCULATOR 5+4 5-3 2*7 8/3 2^6 log(2) exp(3) abs(-1) %absolute value floor(1.9) ...
import numpy as np mylist = [1, 2, 3] #list x = np.array(mylist) #convert list to array Numpy y = np.array([4, 5, 6]) #built an array Numpy r =...
Basics # for comments string with " or ' ; to have multiple commands in the same line case sensitive Operators +, -, *, / ** exponential %...
CALCULATOR +, -, *, /Use ^ for raise to a power, function sqrt() for square root, abs() for absolute value. VARIABLES #assign value to...