Ask Question
10 August, 09:17

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

+4
Answers (1)
  1. 10 August, 12:56
    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?
Find an answer to your question ✅ “function outputValue = AdjustOutput (outputValue, amplitudeResponse, phaseResponse) % Write an if-statement that subtracts 5 from ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers