Question: vector length in Maple 10.0 Classic worksheet

Hi. Anyone knows a command on how to calculate the norm (length) of a vector? For example: Maple input: START >restart:with(linalg):#I know this package is obsolete, but my Teach only teaches theese commands.. >u:=vector([1,1,1,1]);#a vector i defined >LengthU:=sqrt(u[1]^2+u[2]^2+u[3]^2+u[4]^2);#This is how I calculate the length theese days... END Anybody knows a command, so that my third line will not be neccesary? TIA
Please Wait...