Question: In Scheme language Create a second function vecfn that allows one to pass the function to perform on the input lists as the first argument.
In Scheme language
Create a second function "vecfn" that allows one to pass the function to perform on the input lists as the first argument. Below are the test cases that should work when you type them in.
(display (vecfn - '(1 2 3) '(4 5 6))) (newline) (display (vecfn + '(4) (list (sqrt -1)))) (newline) (display (vecfn / '(1 2 3) '(1 4 5))) (newline)
Finally, add a "vecfun" to the syntax of Scheme. Submit a single text file. Please create vecfn, instead of vecadd for defining a define
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
