]> git.parisson.com Git - cnaq.git/commitdiff
Remove smooth
authoryomguy <yomguy@5fc3e0e6-29bc-4d03-b52b-c088cb822bde>
Mon, 17 Nov 2008 09:32:09 +0000 (09:32 +0000)
committeryomguy <yomguy@5fc3e0e6-29bc-4d03-b52b-c088cb822bde>
Mon, 17 Nov 2008 09:32:09 +0000 (09:32 +0000)
git-svn-id: http://svn.parisson.org/svn/CNAQ/trunk@198 5fc3e0e6-29bc-4d03-b52b-c088cb822bde

tools/plot_impedance.m

index cd0934146d8ea30bdcbfa63964b670826573cc85..93ccbe6eb88373957849ae37d2ed48951423ee61 100644 (file)
@@ -33,7 +33,7 @@ f_min_ind = f_min_list(length(f_min_list));
 \r
 figure\r
 subplot(2,1,1);\r
-data = smooth(abs(fz),20);\r
+data = abs(fz);\r
 if option == 'lin'\r
     plot(f,data)\r
 elseif option == 'log'\r
@@ -46,7 +46,7 @@ title(['Module de l impedance']);
 grid on\r
 \r
 subplot(2,1,2);\r
-data = smooth(unwrap(angle(fz)),20);\r
+data = unwrap(angle(fz));\r
 if option == 'lin'\r
     plot(f,data)\r
 elseif option == 'log'\r