what happens behind "/"
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
warnerchang
el 20 de Dic. de 2023
[2:6]/[3:7]
Ans = 0.8148
what happens behind this operation?
Is there any algorithm?
0 comentarios
Respuesta aceptada
Torsten
el 20 de Dic. de 2023
Editada: Torsten
el 20 de Dic. de 2023
If x = [2 3 4 5 6] and y = [3 4 5 6 7], then x/y determines the number "a" for which the error when approximating x by a*y is minimal.
The solution to this optimization problem is
x = 2:6;
y = 3:7;
a = sum(x.*y)/sum(y.^2)
a = x/y
0 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!