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
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)
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.
solve using MATLAB. Title: Numerical differentiations. Use Richardson extrapolation to estimate the first derivative of y = cos x at x = π/4...
solve using MATLAB. Title: Numerical differentiations. Use Richardson extrapolation to estimate the first derivative of y = cos x at x = π/4 using step sizes of h1 = π/3 and h2 = π/6. Employ centered differences of O(h2) for the initial estimates. solve using MATLAB.
I am learning Matlab. I have a math formula such as A(x , y)= (x+1) /...
I am learning Matlab. I have a math formula such as A(x , y)= (x+1) / (y+1), and n=6 How can I write down the for loop in Matlab to express 1 <= x and y < = n? Thanks
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT