view scripts/help/module.mk @ 20818:9d2023d1a63c

binoinv.m: Implement binary search algorithm for 28X performance increase (bug #34363). * binoinv.m: Call new functions scalar_binoinv or vector_binoinv to calculate binoinv. If there are still uncalculated values then call bin_search_binoinv to perform binary search for remaining values. Add more BIST tests. * binoinv.m (scalar_binoinv): New subfunction to calculate binoinv for scalar x. Stops when x > 1000. * binoinv.m (vector_binoinv): New subfunction to calculate binoinv for scalar x. Stops when x > 1000.
author Lachlan Andrew <lachlanbis@gmail.com>
date Sun, 11 Oct 2015 19:49:40 -0700
parents 916cc788d906
children
line wrap: on
line source

FCN_FILE_DIRS += \
  scripts/help \
  scripts/help/private

scripts_help_PRIVATE_FCN_FILES = \
  scripts/help/private/__additional_help_message__.m \
  scripts/help/private/__strip_html_tags__.m

scripts_help_FCN_FILES = \
  scripts/help/__gripe_missing_component__.m \
  scripts/help/__makeinfo__.m \
  scripts/help/__unimplemented__.m \
  scripts/help/doc.m \
  scripts/help/doc_cache_create.m \
  scripts/help/get_first_help_sentence.m \
  scripts/help/help.m \
  scripts/help/lookfor.m \
  scripts/help/print_usage.m \
  scripts/help/type.m \
  scripts/help/which.m

scripts_helpdir = $(fcnfiledir)/help

scripts_help_DATA = $(scripts_help_FCN_FILES)

scripts_help_privatedir = $(fcnfiledir)/help/private

scripts_help_private_DATA = $(scripts_help_PRIVATE_FCN_FILES)

FCN_FILES += \
  $(scripts_help_FCN_FILES) \
  $(scripts_help_PRIVATE_FCN_FILES)

PKG_ADD_FILES += scripts/help/PKG_ADD

DIRSTAMP_FILES += scripts/help/$(octave_dirstamp)