how to calculate the area under a plot? when I use the area option, I'm not getting a satisfactory value. someone pls help me.

1 visualización (últimos 30 días)
the program is attatched herewith clear all; clc; t=0:0.1:2.4; %total no. of points f=1./t fs=10; %sampling frequency y=xlsread('f1 15 th new.xlsx','sheet1','L6:L29'); %original function in time Y=fft(y); %convert to Freq domain plot(f,abs(Y),'r'); a=area(f,2*abs(Y)); a

Respuestas (1)

Matt Kindig
Matt Kindig el 8 de Mayo de 2013
This isn't what the area() function does. The area function plots a filled shape below the line that is passed into it. The graphics handle to the shape is returned by the function, which is unrelated to the "area" of your curve.
Use trapz() instead.
doc trapz

Categorías

Más información sobre Numerical Integration and Differentiation en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by