We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1
List of practicals:
1. To implement AND function using Perceptron.
2. NOR Gate implementation with binary input and bipolar target using Adaline. 3. XOR Gate implementation with bipolar input and bipolar target using Madaline. 4. Create a perceptron with appropriate no. of inputs and outputs. Train it using fixed increment learning algorithm until no change in weights is required. Output the final weights. 5. Using back-propagation network, find the new weights. It is presented with the input pattern [0, 1] and the target output is 1. Use a learning rate α = 0.25 and binary sigmoidal activation function. 6. Program for to perform Union, Intersection and Complement operations in Fuzzy Sets. 7. Write program that ask user to enter two fuzzy sets and computes the resultant fuzzy relation upto 10 greater than 6. 8. Create two matrices of the dimension 3x3 and 3x4 respectively which contain random number as there elements. Compute composition of these two fuzzy relation using both max-min and max-product composition. 9. Write a program that creates two random fuzzy sets of the dimensions say n and m (to be defined by the user). Complete the fuzzy relation indexed by Cartesian product of the sets. 10. Genetic neuro hybrid systems, Genetic-Fuzzy rule based system. 11. Consider a set P= {p1, p2, p3, p4, p5} of five verities of plants. Set D= {D1, D2, D3, D4, D5} of the various diseases affecting the plants and S= {s1, s2, s3, s4, s5} be the common symptoms. let R=P X D & Q = D X S 12. Train an autocorrelator network for the pattern [1,-1, 1, 1] and also test the new weight for one missing and one mistake entry in the test vector respectively. 13. Train the autocorrelator by given patterns: A1=(-1,1,-1,1), A2=(1,1,1,-1), A3=(-1, -1, - 1, 1). Test it using patterns: Ax=(-1,1,-1,1), Ay=(1,1,1,1), Az=(-1,-1,-1,-1). 14. Write a program in MATLAB to implement De-Morgan’s Law. 15. Generate ANDNOT function using McCulloch-Pitts neural net.