Problem 42447. Define the operators of function_handles

Suppose f and g are function_handles, try to define f+g,f-g,f*g and f/g.

e.g. 
   if   f = @(x)x and g = @(x)x+1
   then
        f+g = @(x)2*x+1
        f-g = @(x)-1
        f*g = @(x)x*(x+1)
        f/g = @(x)x/(x+1)

Solution Stats

62.14% Correct | 37.86% Incorrect
Last Solution submitted on Dec 10, 2025

Solution Comments

Show comments


Problem Recent Solvers57

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!