Do the following, integrate the results in a Word document. The document should be well formatted mixing the graphs and explanations as requested in the assignment, with ABSOLUTELY NO handwritten or hand drawn items.
Matlab Issues
Functions
You can introduce a function in Matlab by writing an m-file that starts with the function function.
Plotting 3D graphs
To plot 3D graphs in Matlab try using variations of the surf, mesh, or waterfall functions.
Matrices
You can use the zeros and the ones Matlab commands to quickly populate some matrices. These commands can sometimes help you start the process of populating matrices.
Creating new figures
You can use the figure Matlab function to create a new figure. The gcf command returns the handle to the current figure.
The Matlab Assignment
1) Do problem 2.2 from the textbook. Use the adaline function handed out in class. You can set mu=0.01 and present the data to the network 1000 times. In addition to answering the questions posed by the problem find the ideal weight values needed to implement the OR logic function for bipolar and binary inputs. Comment on how close the trained weights are to these ideal values for the two cases.
2) Do problem 2.6 from the textbook.