Using different X-axis in trapz
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Muhammet Nuri
el 1 de Ag. de 2022
Comentada: Muhammet Nuri
el 2 de Ag. de 2022
I want to numerically integrate the graph i have using an axis other than y=0. is there any built in tool to do that. Thanks for any help.
0 comentarios
Respuesta aceptada
Walter Roberson
el 1 de Ag. de 2022
No, there is no built-in tool for that .
Have you considered applying a rotation and translation ? makehgtform is convenient for creating transformation matrices
z = zeros(size(x));
[x(:), y(:), z(:), zeros(numel(x),1)] * Matrix
and take the first two columns of the output
I show z separately because this is the general form for when you have x y z coordinates, that you use them as the first three columns and the fourth needs to zeros
Más respuestas (0)
Ver también
Categorías
Más información sobre Numerical Integration and Differentiation 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!