integration in matlab - error
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Rasmus
am 4 Mär. 2014
Bearbeitet: Mischa Kim
am 5 Mär. 2014
I have to integrate the following expression
(3*sin^4 x)/x^4 with 0 as lower limit and 3 as upper limit.
my code is the following:
fun=@(x) (3*(sin.^4)(x))/x^4
q6=integral(fun,0,2)
what do i do wrong, it keeps saying ---> Unbalanced or unexpected parenthesis or bracket.
I can't see the problem - Anyone?
0 Kommentare
Akzeptierte Antwort
Mischa Kim
am 5 Mär. 2014
Bearbeitet: Mischa Kim
am 5 Mär. 2014
Rasmus, use
fun = @(x) 3*(sin(x).^4)./x.^4;
sin^4 x is just another way of writing (sin(x))^4.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Numerical Integration and Differentiation finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!