File:Step function with values 0 and 1.svg
Summary
Description |
English: Function with |
Date | |
Source | Own work |
Author | Stephan Kulla (User:Stephan Kulla) |
SVG development | |
Source code | Python codeimport matplotlib.pyplot as plt
import numpy as np
xs = np.linspace(0, 2, 3)
ys = [0,0,1]
blue="#007ec1"
plt.step(xs, ys, color=blue)
plt.savefig("Step function with values 0 and 1.svg", transparent=True, bbox_inches="tight", pad_inches=0.05)
|
Licensing
I, the copyright holder of this work, hereby publish it under the following license:
![]() ![]() |
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.
|