In this task you're to generate a discontinuous mathematical function using arrays and indexing.
Start this task by creating a monotonically increasing numeric array called x that starts at -5, increments by 0.1, and ends at +5.
Create another zeros array (i.e. use the zeros() function) which is the same dimensions as x. Make sure to call this zeros array y. Using indexing,
store the function in the first 50 elements of array y (you'll need to also only use the first 50 elements in x to do this).
In the last 51 elements of y (i.e. elements 51 through to 101) store the function , again you'll also need to use the last 51 elements of x to do this.
Do not use loops in your solution. Important note:
Do not use the keywords 'clear' or 'clc' in your solution.