Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
norm
#1
I am writing a program that takes a vector as parameter and returns the corresponding normalized vector.
The first part of the program attempts this task manually (without the function 'norm') and the second part is with the 'norm' function.
I have written them both and the program runs but I cannot understand why I get different outcomes.
I get 1.06 in the fist part and 3.74 in the second.
why?
(both parts are separated by #------------------------------------)
import numpy as np
from numpy import array
from scipy.linalg import norm

"""
V=[1,2,3]

n_vec=sqrt(V[0]**2+V[1]**2+V[2]**3)

    
def v_vector(V):
    return ((V[0]/n_vec)+(V[1]/n_vec)+(V[2]/n_vec))

print(v_vector(V))
"""
#-----------------------------------------------------------


V=[1,2,3]

def v_vector(V):
    return (linalg.norm(V))

print(v_vector(V))

I solved this issue myself, but I am not sure how to remove this post.
Reply


Messages In This Thread
norm - by mcgrim - Mar-21-2019, 10:00 AM
RE: norm - by nilamo - Mar-21-2019, 07:05 PM
RE: norm - by mcgrim - Mar-22-2019, 12:39 PM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020