func = @(t) sin(t).*(cos(t).^2)
for x=0:10:90
teta=deg2rad(x)
q = integral(fun,0,teta)
plot(teta,q)
hold on
end
I get this error : Error using * Inner matrix dimensions must agree.
hope to get some help figurng it out :)

 Respuesta aceptada

Torsten
Torsten el 27 de Abr. de 2018
func = @(t) sin(t).*cos(t).^2;
x = 0:10:90;
theta = deg2rad(x);
for i=1:numel(theta)
q(i) = integral(func,0,theta(i));
end
plot(theta,q)
Best wishes
Torsten.

Más respuestas (0)

Categorías

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by