How can i ameliorate this curve ?

Answers (1)

Image Analyst
Image Analyst on 1 Feb 2017
Interpolate in more points with interp1(), then use conv() or sgolayfilt() to smooth the signal.

3 Comments

This is my program
loglog(R_matrix, P_out.*1e6 )
xlabel('Resistive load (\Omega)')
ylabel('|Power| [\mu W/g^2]')
How can i add the above function ?
You forgot to supply the data for R_matrix and P_out so I can't run your code. Make it easy for me to help you, not hard.
R_matrix= [100; 1e3; 10e3; 100e3; 1e6; 10e6];
P_out = [1,570e-06;1,523e-05;0,000111;0,000136;8,169e-05; 1,0594e-05];

Sign in to comment.

Asked:

on 1 Feb 2017

Commented:

on 2 Feb 2017

Community Treasure Hunt

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

Start Hunting!