Plot Integral with variable limits in Matlab -


i'm having trouble trying solve , plot integral in matlab. in fact, know if solve one, i'll solve integrals need now.

i have plot in x axis value of variable "d" , in y axis value of integral of normalized gaussian function -inf ((40*log10(d)-112)/36) , i'm not finding out way correctly. d between 0 , 1600

can here please me?

in matlab can use integral-function evaluate integrals:

q = integral(fun,xmin,xmax) 

fun needs function handle, called function functions, these 2 examples:

square = @(x) x.^2; plusone = @(x) x+1; 

Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -