Prompt: In Python language, wrte a function that applies the logistic sigmoid function to all elements of a NumPy array. Code:   import numpy as np import math import matplotlib.pyplot as plt import pandas as pd   def sigmoid(inputArray):         modifiedArray = np.zeros(len(inputArray))         #YOUR CODE HERE:         return(modifiedArray)   def test():   inputs = np.arange(-100, 100, 0.5) outputs = sigmoid(inputs) plt.figure(1) plt.plot(inputs) plt.title('Input') plt.xlabel('Index') plt.ylabel('Value') plt.show() plt.figure(2) plt.plot(outputs,'Black') plt.title('Output') plt.xlabel('Index') plt.ylabel('Value') plt.show()   test()

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter7: Arrays
Section: Chapter Questions
Problem 3PP: (Numerical) Given a one-dimensional array of integer numbers, write and test a function that...
icon
Related questions
Question

Prompt: In Python language, wrte a function that applies the logistic sigmoid function to all elements of a NumPy array.

Code:

 

import numpy as np

import math

import matplotlib.pyplot as plt

import pandas as pd

 

def sigmoid(inputArray):

 

      modifiedArray = np.zeros(len(inputArray))

 

      #YOUR CODE HERE:

 

      return(modifiedArray)

 

def test():

 

inputs = np.arange(-100, 100, 0.5)

outputs = sigmoid(inputs)

plt.figure(1)

plt.plot(inputs)

plt.title('Input')

plt.xlabel('Index')

plt.ylabel('Value')

plt.show()

plt.figure(2)

plt.plot(outputs,'Black')

plt.title('Output')

plt.xlabel('Index')

plt.ylabel('Value')

plt.show()

 

test()

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Arrays
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
New Perspectives on HTML5, CSS3, and JavaScript
New Perspectives on HTML5, CSS3, and JavaScript
Computer Science
ISBN:
9781305503922
Author:
Patrick M. Carey
Publisher:
Cengage Learning
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage