how to divide 2 array
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sourav singh
el 15 de Mzo. de 2021
Respondida: obfish
el 15 de Mzo. de 2021
U = [0 10 15 20 25 30 35 40 ];
P = [32.91428 30.8628 26.5554 23.45806 22.92738 24.98139 29.61881 36.97433 47.28429];
U_by_p= U/P; % i am writing this in script
0 comentarios
Respuesta aceptada
obfish
el 15 de Mzo. de 2021
Just use dot-divide for element-wise operation.
U_by_p= U ./ P;
By the way, your vector has incompatible size, you should fix this first.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Operators and Elementary Operations 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!