Let x=[2 4 6 8 10] and y=[1 3 5 7 9]. Compute for the vector z whose elements are equal to z= (xy+ y/x)/[(x+y)]^((y-x)) + 10^(x⁄y)
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
John Doe
el 21 de Sept. de 2021
Comentada: Alan Stevens
el 21 de Sept. de 2021
This is my answer:
x = [2 4 6 8 10];
y = [1 3 5 7 9];
z = (((x.*y)+(y./x))/((x+y).^(y-x)))+10.^(x./y)
z = 195.4683 117.0126 111.3172 109.3632 108.3838
Can somebody confirm if this is correct? Or is there something that I need to change?
0 comentarios
Respuesta aceptada
Alan Stevens
el 21 de Sept. de 2021
You need
z = (((x.*y)+(y./x))./((x+y).^(y-x)))+10.^(x./y)
% another dot here ^
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!