Jump to content

File:Mu-law function.svg

Page contents not supported in other languages.
This is a file from the Wikimedia Commons
From Wikipedia, the free encyclopedia
    Original file (SVG file, nominally 900 × 720 pixels, file size: 26 KB)

    Summary

    Description
    English: Plot of mu-law function
    Date
    Source Own work
    Author Morn
    SVG development
    InfoField
     The SVG code is valid.
     This plot was created with Matplotlib.
    Source code
    InfoField

    Python code

    Source code
    from pylab import *
    
    def sgn(v):
        if v >= 0:
            return 1
        else:
            return -1
    
    def fi(y):
        "Inverse mu-law"
        return sgn(y) * (256**(abs(y)) - 1) / 255
    
    def ff(x):
        "Forward mu-law"
        return sgn(x) * log(1 + 255 * abs(x)) / log(256)
    
    figure(figsize = (10, 8))
    X = arange(-1, 1.01, .01)
    Y = [fi(y) for y in X]
    plot(X, Y)
    xlabel("y")
    ylabel("FâŧÂđ(y)")
    title ("Inverse Ξ-law function")
    axis((-1, 1, -1, 1))
    grid()
    savefig("mu-law-inv.svg")
    
    figure(figsize = (10, 8))
    Y = [ff(x) for x in X]
    plot(X, Y)
    xlabel("x")
    ylabel("F(x)")
    title ("Ξ-law function")
    axis((-1, 1, -1, 1))
    grid()
    savefig("mu-law.svg")
    
    show()
    

    Licensing

    I, the copyright holder of this work, hereby publish it under the following license:
    Creative Commons CC-Zero This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication.
    The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.

    Captions

    Add a one-line explanation of what this file represents

    Items portrayed in this file

    depicts

    2 May 2022

    image/svg+xml

    File history

    Click on a date/time to view the file as it appeared at that time.

    Date/TimeThumbnailDimensionsUserComment
    current14:54, 2 May 2022Thumbnail for version as of 14:54, 2 May 2022900 × 720 (26 KB)MornUploaded own work with UploadWizard

    The following page uses this file:

    Global file usage

    The following other wikis use this file:

    Metadata