affine_tdg11.py

Created by cent20

Created on March 18, 2022

641 Bytes

Correction TDG 11


# Correction du TDG 11

def affine_image(m, p, x) :
  # calcule et retourne l’image de x par la fonction x -> m x + p
  return m * x + p
 
def affine_cd(xA,yA,xB,yB):
  # calcule le Coef. direc à partir des coordonnées de deux points
  return (yB-yA)/(xB-xA)

def affine_oao(xA,yA,xB,yB):
  # calcule l'ord à l'origine à partir des coordonnées de deux points
  return yA-(yB-yA)/(xB-xA)*xA
  
def affine_equation(xA,yA,xB,yB):
  # Cette fonction n'est pas exigible
  print("y = m x + p")
  print("m = ",affine_cd(xA,yA,xB,yB))
  print("p = ",affine_oao(xA,yA,xB,yB))
  print("sur [",min(xA,xB),";",max(xA,xB),"]")

During your visit to our site, NumWorks needs to install "cookies" or use other technologies to collect data about you in order to:

With the exception of Cookies essential to the operation of the site, NumWorks leaves you the choice: you can accept Cookies for audience measurement by clicking on the "Accept and continue" button, or refuse these Cookies by clicking on the "Continue without accepting" button or by continuing your browsing. You can update your choice at any time by clicking on the link "Manage my cookies" at the bottom of the page. For more information, please consult our cookies policy.