Workarounds: Difference between revisions

From Octave
Jump to navigation Jump to search
(list of workarounds for missing octave functions taken from Octave-Forge trunk/main/INDEX)
 
No edit summary
 
Line 15: Line 15:
* {{Codeline|ttest2}}: use {{Codeline|t_test_2}}
* {{Codeline|ttest2}}: use {{Codeline|t_test_2}}
* {{Codeline|ztest}}: use {{Codeline|<f>z_test}}
* {{Codeline|ztest}}: use {{Codeline|<f>z_test}}
[[Category:Missing functions]]

Latest revision as of 20:14, 8 April 2019

A list of workarounds for stuff that is still missing in Octave:

  • inmem: use who with -functions
  • gallery: available in Nick Higham's site previously at Test Matrix Toolbox
  • gamma(complex): use Tim Reluga's Gamma.m or Eyal Doron's cgamma.m
  • hdf: use load/save with -hdf5
  • aload and asave: flat ascii file read/write, available from Octave-ci
  • anova1: use anova
  • nlinfit: use leasqr
  • barttest: use bartlett_test
  • ranksum: use u_test
  • signrank: use wilcoxon_test
  • signtest: use sign_test
  • ttest: use t_test
  • ttest2: use t_test_2
  • ztest: use <f>z_test