Question
Any help is appreciated.
I need to add the code for the three additional L norms.
Here is the code file:
https://dl.dropboxusercontent.com/u/43553083/lp_norms_in_3D_partial.m
Creating plots of four different lp norms in R2 . We want to see if we can visualize various lp norms. This is difficult to do in a high I have created the start of Matlab program to do this. This start of the program shows how to plot the /, norm. There is more description about the process in the Madab program, so you can read that. The assignment is to generate a Madab report (use the Publish function) that contains four examples of the lp norm: The l2 norm across M2 . Also known as the standard Euclidean norm. The l1 norm across R2. Also known as the taxicab or Manhattan norm. Approximate the /M norm across R2. Also known as the Chebyshev norm. You can approximate this by make p large. For example, p = 100 can do the trick. For the fourth norm, pick any value you want for p. Pseudo-inverses (i.e. the case when p
Explanation / Answer
the command x = norm(A,p); stores the pth norm of the matrix A in the variable x. I guess you can proceed further. if you need further help, please comment