Write an MIPS program that calculates the euclidean norm and the taxi-cab norm of a vector (Links to an external site.). Please not that these are two separate programs. The euclidean norm should have the signature: float taxi_cab(float a[]).
While the euclidean norm should have the signature: float euclidean_norm(float a[]). Please follow exactly the method signatures given above.