~ubuntu-branches/ubuntu/wily/octave/wily

« back to all changes in this revision

Viewing changes to scripts/statistics/tests/cor_test.m

  • Committer: Package Import Robot
  • Author(s): Sébastien Villemot
  • Date: 2013-05-14 12:42:41 UTC
  • mfrom: (5.1.3 experimental)
  • Revision ID: package-import@ubuntu.com-20130514124241-dqow8bc0l4r3yj93
Tags: 3.6.4-2
* Adapt for Texinfo 5
  - add_info_dir_categories: use @dircategory in the patch
  - texinfo5.diff: new patch, fixes compatibility issues with Texinfo 5
* Upgrade to FLTK 1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
113
113
    t.dist = "stdnormal";
114
114
    cdf = stdnormal_cdf (t.stat);
115
115
  else
116
 
    error ("cor_test: METHOD `%s' not recognized", method);
 
116
    error ("cor_test: METHOD '%s' not recognized", method);
117
117
  endif
118
118
 
119
119
  if (strcmp (alt, "!=") || strcmp (alt, "<>"))
123
123
  elseif (strcmp (alt, "<"))
124
124
    t.pval = cdf;
125
125
  else
126
 
    error ("cor_test: alternative `%s' not recognized", alt);
 
126
    error ("cor_test: alternative '%s' not recognized", alt);
127
127
  endif
128
128
 
129
129
  t.alternative = alt;