Question: Logical operators and arrays: 3 - input and truth table Given three 1 D arrays ( inputA , inputB, inputC ) , assign 1 D

Logical operators and arrays: 3-input and truth table
Given three 1D arrays (inputA, inputB, inputC), assign 1D array andResult with the outcomes of a 3 variable logical-AND operation.
Ex: If inputA is 0,0,1, inputB is 0,1,1, and input C is 1,1,1, then andResult is 0,0,1
Function 0
1 function andResult = LogicalAND3(inputA, inputB, inputC)
3
% Assign andResult with the truth table outcomes for a
%3 variable logical-and operation
andResult = inputA;
end
Code to call your function
 Logical operators and arrays: 3-input and truth table Given three 1D

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!