MATLAB: Function that graphs equations

graphhomework

Create a function named butterfly. The function receives three input arguments and returns two output variables (x and y values). The function body should also contain a plot command (y as a function of x.
Use loops to plot the butterfly using the equations:
f=e^(cos(t))-2cos(4t)-(sin(t/12))^5
x=x0+s*f*sint
y=y0+s*f*cost
The three input arguments define the function t: minimum value, maximum value and step size.
The variable s is used to scale the height of the butterfly. It should be defined inside the body of the function as a random real number between 0 and 1 (s is not an input argument for the function).
The variables x0 and y0 define the location of the butterfly center. Ask the user to input their values inside the body of the function.
What I have so far:
function out=butterfly(min,max,n)
x0=input('Input the x value of the butterfly center')
y0=input('Input the y value of the butterfly center')
s=rand(1000,1)
x=x0+s*f*sint
y=y0+s*f*cost
plot(x,y)
How do I (1) get the values of x0,y0 to be the center and (2) define t with the values given.

Best Answer

Krish - your t will be defined given the minimum, maximum, and step size. For example, you can create t as a linearly spaced vector of elements using linspace as
t = linspace(minValue,maxValue,numValues);
Note the change in variable names. Never name your variables using MATLAB built-in functions (like min and max).
So now that you have your t, you will be able to determine f. But look closely at your definition for it
f=e^(cos(t))-2cos(4t)-(sin(t/12))^5;
What is e? Do you mean to use exp instead? What is 4t or 2cos? MATLAB will not be able to evaluate these expressions. I will leave it to you to figure out what is wrong and how to correct these statements. Note that the MATLAB editor should be flagging them as incorrect (underlined in red) so make use of these "hints" that something is wrong with the code. (For the same reason, there will be problems with the expressions for x and y.)
Also, why is s a 1000x1 array? Go back to the homework assignment and ask yourself what should s be. Also, note the output of butterfly - what should it be and are you providing that?
The values of x0 and y0 will be the centre because that is how you they are being used in the expressions for x and y. This happens due to the nature of these equations, so there is nothing there for you to do except evaluate for x and y.
Finally, you will probably also observe a problem when evaluating
f*sint
f will be an array of values, sint will be an array of values (ignore for the moment that sint cannot be evaluated as is), so what should this product be? Element-wise multiplication or something else?
Once you get this working, you should observe a very nice outline of a butterfly. Increasing the n (the number of steps) should provide a smoother (more accurate) representation.