Question

In: Advanced Math

using MATLAB : x = [0.3036 0.6168 0.7128 0.7120 0.9377 0.7120 0.3989 0.3028 0.3036 0.5293]; y...

using MATLAB :

x = [0.3036 0.6168 0.7128 0.7120 0.9377 0.7120 0.3989 0.3028 0.3036 0.5293];

y = [0.1960 0.2977 0.4169 0.1960 0.2620 0.5680 0.6697 0.7889 0.5680 0.5020];

reflect the model about the horizontal line y = 0.6180 and translate the image .0484 units along the x axis.

and then reflect the model about the vertical line x = 0.5078 and translate the image -.3720 units along the y axis

Solutions

Expert Solution

We have shown the effects of reflection and translation about any axis. Also we attached the matlab code for the same.

Matlab code for '' reflect the model about the horizontal line y = a1 and translate the image a2 units along the x axis. ''

x = [0.3036 0.6168 0.7128 0.7120 0.9377 0.7120 0.3989 0.3028 0.3036 0.5293];
y = [0.1960 0.2977 0.4169 0.1960 0.2620 0.5680 0.6697 0.7889 0.5680 0.5020];
a1=0.6180; a2=.0484;
y1=2*a1-y; x1=x+a2;
plot(x,y,'--o',x1,y1,'-.s');

Matlab code for '' reflect the model about the vertical line x = a1 and translate the image a2 units along the y axis. ''

x = [0.3036 0.6168 0.7128 0.7120 0.9377 0.7120 0.3989 0.3028 0.3036 0.5293];
y = [0.1960 0.2977 0.4169 0.1960 0.2620 0.5680 0.6697 0.7889 0.5680 0.5020];
a1=0.5078; a2=-0.3720;
x1=2*a1-x; y1=y+a2;
plot(x,y,'--o',x1,y1,'-.s');


Related Solutions

Using matlab Find x and y that solve the following system: ln(x 2 + y) =...
Using matlab Find x and y that solve the following system: ln(x 2 + y) = 1 − y , xy = − √ x
using matlab, compute and plot y [n] = x [n]* h [n], where a. x [n]...
using matlab, compute and plot y [n] = x [n]* h [n], where a. x [n] = h [n] = a^n (0 <=n <=40) & a = 0.5 b. x [n] = cos [n]; h [n] = u [n]; n = 0:4:360 c. x [n] = sin [n] ; h [n] = a^n; n:4:360; a = 0.9
Solve this differential equation using Matlab yy' + xy2 =x , with y(0)=5 for x=0 to...
Solve this differential equation using Matlab yy' + xy2 =x , with y(0)=5 for x=0 to 2.5 with a step size 0.25 (a) Analytical (b) Euler (c) Heun d) 4th order R-K method Display all results on the same graph
Solve the following equations using the Newton-Raphason method. ( using matlab) x^2+x*y^2 = 9 ?3x^2 *...
Solve the following equations using the Newton-Raphason method. ( using matlab) x^2+x*y^2 = 9 ?3x^2 * y - y^3 = 4    ?initial estimation of (x,y) = (1.2, 2.5) ?please help.. using matlab and matlab code
script for Secant Method. Using Matlab or Octave. The data: y = x.^2 - 1.2 x_lower...
script for Secant Method. Using Matlab or Octave. The data: y = x.^2 - 1.2 x_lower = 0.4 x_upper = 0.6 Es = 0.5*10^(2-n) n = 5
Integrate the following function by using symbolic operation in MATLAB. y = x^3 − 2x^2 +...
Integrate the following function by using symbolic operation in MATLAB. y = x^3 − 2x^2 + 7
Perform all of these questions using MATLAB software. 5. The relative error in computation of x-y...
Perform all of these questions using MATLAB software. 5. The relative error in computation of x-y for = 12.05 and y = 8.02 having absolute errors x=0.005 and y=-0.001. 6. Find the relative error in computation of x-y for x=9.05 and y= 6.56 having absolute errors x = 0.001 and y 0.003 respectively. 7.Find the relative error in computation of x+y for x= 11.75 and y= 7.23 having absolute errors x = 0.002 and y=0.005. 8. If y=4x^6-5x, find the...
solve using both methods (Dsolve and ODE45 on matlab) please provide steps 1) y'+y=e^x 2) y'+2y=...
solve using both methods (Dsolve and ODE45 on matlab) please provide steps 1) y'+y=e^x 2) y'+2y= 2 sin(x)
Using matlab I need to create five random circles with grid x and y (100,100). Also...
Using matlab I need to create five random circles with grid x and y (100,100). Also create 10 different colors x(1:100) and y (1:100)
y'=y-x^2 ; y(1)= -4 Write a MATLAB program that makes two plots of the solution to...
y'=y-x^2 ; y(1)= -4 Write a MATLAB program that makes two plots of the solution to the equation using the following values. Suggest you use nested loops instead of two different loops. Be sure to label your plots. a. x0 = 1.0, step size h = .2, number of steps n = 20. b. x0 = 1.0, step size h = .05, number of steps n = 80.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT