Ask Question
13 October, 07:44

function outputValue = AdjustOutput (outputValue, amplitudeResponse, phaseResponse) % Write an if-statement that subtracts 5 from outputValue % if amplitudeResponse is greater than 10 outputValue = outputValue; % Write an if-statement that adds 3 to outputValue if % phaseResponse is less than 275 end

+2
Answers (1)
  1. 13 October, 11:18
    0
    function outputValue = AdjustOutput (outputValue, amplitudeResponse, phaseResponse)

    if amplitudeResponse > 10

    outputValue = outputValue - 5;

    else

    outputValue = outputValue;

    end

    if phaseResponse < 275

    outputValue = outputValue + 3;

    else

    outputValue = outputValue

    end

    end

    AdjustOutput (20, 15, 149)
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “function outputValue = AdjustOutput (outputValue, amplitudeResponse, phaseResponse) % Write an if-statement that subtracts 5 from ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers