Ask Question
13 September, 19:25

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

+5
Answers (1)
  1. 13 September, 19:42
    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 & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers