fitted.html 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  2. "http://www.w3.org/TR/REC-html40/loose.dtd">
  3. <html>
  4. <head>
  5. <title>Description of fitted</title>
  6. <meta name="keywords" content="fitted">
  7. <meta name="description" content="Fitted values from a locfit object.">
  8. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  9. <meta name="generator" content="m2html &copy; 2005 Guillaume Flandin">
  10. <meta name="robots" content="index, follow">
  11. <link type="text/css" rel="stylesheet" href="../../../m2html.css">
  12. <script type="text/javascript">
  13. if (top.frames.length == 0) { top.location = "../../../index.html"; };
  14. </script>
  15. </head>
  16. <body>
  17. <a name="_top"></a>
  18. <!-- ../../menu.html chronux_2_10 --><!-- # locfit --><!-- menu.html m -->
  19. <h1>fitted
  20. </h1>
  21. <h2><a name="_name"></a>PURPOSE <a href="#_top"><img alt="^" border="0" src="../../../up.png"></a></h2>
  22. <div class="box"><strong>Fitted values from a locfit object.</strong></div>
  23. <h2><a name="_synopsis"></a>SYNOPSIS <a href="#_top"><img alt="^" border="0" src="../../../up.png"></a></h2>
  24. <div class="box"><strong>function y = fitted(fit) </strong></div>
  25. <h2><a name="_description"></a>DESCRIPTION <a href="#_top"><img alt="^" border="0" src="../../../up.png"></a></h2>
  26. <div class="fragment"><pre class="comment"> Fitted values from a locfit object.
  27. Input arguments:
  28. fit - the locfit() fit.
  29. Author: Catherine Loader.</pre></div>
  30. <!-- crossreference -->
  31. <h2><a name="_cross"></a>CROSS-REFERENCE INFORMATION <a href="#_top"><img alt="^" border="0" src="../../../up.png"></a></h2>
  32. This function calls:
  33. <ul style="list-style-image:url(../../../matlabicon.gif)">
  34. <li><a href="backtr.html" class="code" title="function z=backtr(y,fit)">backtr</a> </li><li><a href="predict.html" class="code" title="function [y, se] = predict(varargin)">predict</a> Interpolate a fit produced by locfit().</li></ul>
  35. This function is called by:
  36. <ul style="list-style-image:url(../../../matlabicon.gif)">
  37. <li><a href="../../../chronux_2_10/locfit/Book/fig5_5.html" class="code" title="">fig5_5</a> Local Regression and Likelihood, Figure 5.5.</li><li><a href="../../../chronux_2_10/locfit/Book/fig6_4.html" class="code" title="">fig6_4</a> Local Regression and Likelihood, Figure 6.4.</li><li><a href="../../../chronux_2_10/locfit/Book/fig6_5.html" class="code" title="">fig6_5</a> Local Regression and Likelihood, Figure 6.5.</li><li><a href="../../../chronux_2_10/locfit/Book/fig8_1.html" class="code" title="">fig8_1</a> Local Regression and Likelihood, Figure 8.1.</li><li><a href="../../../chronux_2_10/locfit/Book/fig8_3.html" class="code" title="">fig8_3</a> Local Regression and Likelihood, Figure 8.3.</li><li><a href="lf_censor.html" class="code" title="function fit = lf_censor(x,y,cens,varargin)">lf_censor</a> </li></ul>
  38. <!-- crossreference -->
  39. <h2><a name="_source"></a>SOURCE CODE <a href="#_top"><img alt="^" border="0" src="../../../up.png"></a></h2>
  40. <div class="fragment"><pre>0001 <a name="_sub0" href="#_subfunctions" class="code">function y = fitted(fit)</a>
  41. 0002
  42. 0003 <span class="comment">% Fitted values from a locfit object.</span>
  43. 0004 <span class="comment">%</span>
  44. 0005 <span class="comment">% Input arguments:</span>
  45. 0006 <span class="comment">% fit - the locfit() fit.</span>
  46. 0007 <span class="comment">%</span>
  47. 0008 <span class="comment">% Author: Catherine Loader.</span>
  48. 0009
  49. 0010 z = <a href="predict.html" class="code" title="function [y, se] = predict(varargin)">predict</a>(fit,<span class="string">'d'</span>,<span class="string">'restyp'</span>,<span class="string">'fit'</span>);
  50. 0011 y = <a href="backtr.html" class="code" title="function z=backtr(y,fit)">backtr</a>(z,fit);
  51. 0012
  52. 0013 <span class="keyword">return</span>;</pre></div>
  53. <hr><address>Generated on Fri 12-Aug-2011 11:36:15 by <strong><a href="http://www.artefact.tk/software/matlab/m2html/" target="_parent">m2html</a></strong> &copy; 2005</address>
  54. </body>
  55. </html>