In Matlab if I have a function f such as the signature is f(a,b,c), I can make a function which has only one variable b, which would call f with a fixed a=a1 and c=c1:
g <- function(b) f(a1, b, c1)