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 inputC is 1,1,1, then andResult is 0,0,1
Function *
Save
C Reset
MATLAB Documentation
1 function andResult = LogicalAND3(inputA, inputB, inputc)
% Assign andResult with the truth table outcomes for a %3 variable logical-and operation
andresult = inputA;
end
Code to call your function (2)
C Reset
1LogicalAnd3([0,,1],[,1,1],[1,1,1])
 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!