2021-10-01 14:37:07 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
Created on Fri Oct 1 10:42:13 2021
|
|
|
|
|
|
|
|
@author: Joschka
|
|
|
|
"""
|
2021-10-08 11:18:12 +02:00
|
|
|
import numpy as np
|
2021-11-15 11:40:43 +01:00
|
|
|
import matplotlib.pyplot as plt
|
2021-10-01 14:37:07 +02:00
|
|
|
|
2021-10-26 14:33:07 +02:00
|
|
|
|
2021-11-04 19:23:34 +01:00
|
|
|
def main():
|
2022-02-07 20:31:11 +01:00
|
|
|
x = np.linspace(-10, 10, 21)
|
|
|
|
print(x)
|
|
|
|
print(x[:0:-1])
|
2021-11-15 11:40:43 +01:00
|
|
|
|
|
|
|
|
2021-11-09 10:00:44 +01:00
|
|
|
|
|
|
|
|
2021-10-27 12:17:16 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2021-11-04 19:23:34 +01:00
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|