wandb 0.19.1__py3-none-musllinux_1_2_aarch64.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (822) hide show
  1. package_readme.md +97 -0
  2. wandb/__init__.py +246 -0
  3. wandb/__init__.pyi +1197 -0
  4. wandb/__main__.py +3 -0
  5. wandb/_globals.py +19 -0
  6. wandb/agents/__init__.py +0 -0
  7. wandb/agents/pyagent.py +363 -0
  8. wandb/analytics/__init__.py +3 -0
  9. wandb/analytics/sentry.py +263 -0
  10. wandb/apis/__init__.py +48 -0
  11. wandb/apis/attrs.py +51 -0
  12. wandb/apis/importers/__init__.py +1 -0
  13. wandb/apis/importers/internals/internal.py +385 -0
  14. wandb/apis/importers/internals/protocols.py +103 -0
  15. wandb/apis/importers/internals/util.py +78 -0
  16. wandb/apis/importers/mlflow.py +254 -0
  17. wandb/apis/importers/validation.py +108 -0
  18. wandb/apis/importers/wandb.py +1603 -0
  19. wandb/apis/internal.py +232 -0
  20. wandb/apis/normalize.py +73 -0
  21. wandb/apis/paginator.py +81 -0
  22. wandb/apis/public/__init__.py +34 -0
  23. wandb/apis/public/api.py +1387 -0
  24. wandb/apis/public/artifacts.py +1095 -0
  25. wandb/apis/public/const.py +4 -0
  26. wandb/apis/public/files.py +263 -0
  27. wandb/apis/public/history.py +149 -0
  28. wandb/apis/public/jobs.py +653 -0
  29. wandb/apis/public/projects.py +154 -0
  30. wandb/apis/public/query_generator.py +166 -0
  31. wandb/apis/public/reports.py +458 -0
  32. wandb/apis/public/runs.py +1012 -0
  33. wandb/apis/public/sweeps.py +240 -0
  34. wandb/apis/public/teams.py +198 -0
  35. wandb/apis/public/users.py +136 -0
  36. wandb/apis/public/utils.py +68 -0
  37. wandb/apis/reports/__init__.py +1 -0
  38. wandb/apis/reports/v1/__init__.py +8 -0
  39. wandb/apis/reports/v2/__init__.py +8 -0
  40. wandb/apis/workspaces/__init__.py +8 -0
  41. wandb/beta/workflows.py +288 -0
  42. wandb/bin/gpu_stats +0 -0
  43. wandb/bin/wandb-core +0 -0
  44. wandb/cli/__init__.py +0 -0
  45. wandb/cli/beta.py +178 -0
  46. wandb/cli/cli.py +2812 -0
  47. wandb/data_types.py +66 -0
  48. wandb/docker/__init__.py +343 -0
  49. wandb/docker/auth.py +435 -0
  50. wandb/docker/wandb-entrypoint.sh +33 -0
  51. wandb/docker/www_authenticate.py +94 -0
  52. wandb/env.py +513 -0
  53. wandb/errors/__init__.py +17 -0
  54. wandb/errors/errors.py +37 -0
  55. wandb/errors/links.py +73 -0
  56. wandb/errors/term.py +415 -0
  57. wandb/errors/util.py +57 -0
  58. wandb/errors/warnings.py +2 -0
  59. wandb/filesync/__init__.py +0 -0
  60. wandb/filesync/dir_watcher.py +403 -0
  61. wandb/filesync/stats.py +100 -0
  62. wandb/filesync/step_checksum.py +142 -0
  63. wandb/filesync/step_prepare.py +179 -0
  64. wandb/filesync/step_upload.py +287 -0
  65. wandb/filesync/upload_job.py +142 -0
  66. wandb/integration/__init__.py +0 -0
  67. wandb/integration/catboost/__init__.py +5 -0
  68. wandb/integration/catboost/catboost.py +178 -0
  69. wandb/integration/cohere/__init__.py +3 -0
  70. wandb/integration/cohere/cohere.py +21 -0
  71. wandb/integration/cohere/resolver.py +347 -0
  72. wandb/integration/diffusers/__init__.py +3 -0
  73. wandb/integration/diffusers/autologger.py +76 -0
  74. wandb/integration/diffusers/pipeline_resolver.py +50 -0
  75. wandb/integration/diffusers/resolvers/__init__.py +9 -0
  76. wandb/integration/diffusers/resolvers/multimodal.py +882 -0
  77. wandb/integration/diffusers/resolvers/utils.py +102 -0
  78. wandb/integration/fastai/__init__.py +245 -0
  79. wandb/integration/gym/__init__.py +99 -0
  80. wandb/integration/huggingface/__init__.py +3 -0
  81. wandb/integration/huggingface/huggingface.py +18 -0
  82. wandb/integration/huggingface/resolver.py +213 -0
  83. wandb/integration/keras/__init__.py +11 -0
  84. wandb/integration/keras/callbacks/__init__.py +5 -0
  85. wandb/integration/keras/callbacks/metrics_logger.py +129 -0
  86. wandb/integration/keras/callbacks/model_checkpoint.py +188 -0
  87. wandb/integration/keras/callbacks/tables_builder.py +228 -0
  88. wandb/integration/keras/keras.py +1089 -0
  89. wandb/integration/kfp/__init__.py +6 -0
  90. wandb/integration/kfp/helpers.py +28 -0
  91. wandb/integration/kfp/kfp_patch.py +334 -0
  92. wandb/integration/kfp/wandb_logging.py +182 -0
  93. wandb/integration/langchain/__init__.py +3 -0
  94. wandb/integration/langchain/wandb_tracer.py +48 -0
  95. wandb/integration/lightgbm/__init__.py +239 -0
  96. wandb/integration/lightning/__init__.py +0 -0
  97. wandb/integration/lightning/fabric/__init__.py +3 -0
  98. wandb/integration/lightning/fabric/logger.py +764 -0
  99. wandb/integration/metaflow/__init__.py +3 -0
  100. wandb/integration/metaflow/metaflow.py +383 -0
  101. wandb/integration/openai/__init__.py +3 -0
  102. wandb/integration/openai/fine_tuning.py +480 -0
  103. wandb/integration/openai/openai.py +22 -0
  104. wandb/integration/openai/resolver.py +240 -0
  105. wandb/integration/prodigy/__init__.py +3 -0
  106. wandb/integration/prodigy/prodigy.py +299 -0
  107. wandb/integration/sacred/__init__.py +117 -0
  108. wandb/integration/sagemaker/__init__.py +12 -0
  109. wandb/integration/sagemaker/auth.py +28 -0
  110. wandb/integration/sagemaker/config.py +49 -0
  111. wandb/integration/sagemaker/files.py +3 -0
  112. wandb/integration/sagemaker/resources.py +34 -0
  113. wandb/integration/sb3/__init__.py +3 -0
  114. wandb/integration/sb3/sb3.py +147 -0
  115. wandb/integration/sklearn/__init__.py +37 -0
  116. wandb/integration/sklearn/calculate/__init__.py +32 -0
  117. wandb/integration/sklearn/calculate/calibration_curves.py +125 -0
  118. wandb/integration/sklearn/calculate/class_proportions.py +68 -0
  119. wandb/integration/sklearn/calculate/confusion_matrix.py +93 -0
  120. wandb/integration/sklearn/calculate/decision_boundaries.py +40 -0
  121. wandb/integration/sklearn/calculate/elbow_curve.py +55 -0
  122. wandb/integration/sklearn/calculate/feature_importances.py +67 -0
  123. wandb/integration/sklearn/calculate/learning_curve.py +64 -0
  124. wandb/integration/sklearn/calculate/outlier_candidates.py +69 -0
  125. wandb/integration/sklearn/calculate/residuals.py +86 -0
  126. wandb/integration/sklearn/calculate/silhouette.py +118 -0
  127. wandb/integration/sklearn/calculate/summary_metrics.py +62 -0
  128. wandb/integration/sklearn/plot/__init__.py +35 -0
  129. wandb/integration/sklearn/plot/classifier.py +329 -0
  130. wandb/integration/sklearn/plot/clusterer.py +146 -0
  131. wandb/integration/sklearn/plot/regressor.py +121 -0
  132. wandb/integration/sklearn/plot/shared.py +91 -0
  133. wandb/integration/sklearn/utils.py +183 -0
  134. wandb/integration/tensorboard/__init__.py +10 -0
  135. wandb/integration/tensorboard/log.py +354 -0
  136. wandb/integration/tensorboard/monkeypatch.py +186 -0
  137. wandb/integration/tensorflow/__init__.py +5 -0
  138. wandb/integration/tensorflow/estimator_hook.py +54 -0
  139. wandb/integration/torch/__init__.py +0 -0
  140. wandb/integration/torch/wandb_torch.py +554 -0
  141. wandb/integration/ultralytics/__init__.py +11 -0
  142. wandb/integration/ultralytics/bbox_utils.py +215 -0
  143. wandb/integration/ultralytics/callback.py +524 -0
  144. wandb/integration/ultralytics/classification_utils.py +83 -0
  145. wandb/integration/ultralytics/mask_utils.py +202 -0
  146. wandb/integration/ultralytics/pose_utils.py +103 -0
  147. wandb/integration/xgboost/__init__.py +11 -0
  148. wandb/integration/xgboost/xgboost.py +189 -0
  149. wandb/integration/yolov8/__init__.py +0 -0
  150. wandb/integration/yolov8/yolov8.py +284 -0
  151. wandb/jupyter.py +513 -0
  152. wandb/mpmain/__init__.py +0 -0
  153. wandb/mpmain/__main__.py +1 -0
  154. wandb/old/__init__.py +0 -0
  155. wandb/old/core.py +53 -0
  156. wandb/old/settings.py +173 -0
  157. wandb/old/summary.py +440 -0
  158. wandb/plot/__init__.py +28 -0
  159. wandb/plot/bar.py +70 -0
  160. wandb/plot/confusion_matrix.py +181 -0
  161. wandb/plot/custom_chart.py +124 -0
  162. wandb/plot/histogram.py +65 -0
  163. wandb/plot/line.py +74 -0
  164. wandb/plot/line_series.py +176 -0
  165. wandb/plot/pr_curve.py +185 -0
  166. wandb/plot/roc_curve.py +163 -0
  167. wandb/plot/scatter.py +66 -0
  168. wandb/plot/utils.py +183 -0
  169. wandb/plot/viz.py +41 -0
  170. wandb/proto/__init__.py +0 -0
  171. wandb/proto/v3/__init__.py +0 -0
  172. wandb/proto/v3/wandb_base_pb2.py +55 -0
  173. wandb/proto/v3/wandb_internal_pb2.py +1658 -0
  174. wandb/proto/v3/wandb_server_pb2.py +228 -0
  175. wandb/proto/v3/wandb_settings_pb2.py +122 -0
  176. wandb/proto/v3/wandb_telemetry_pb2.py +106 -0
  177. wandb/proto/v4/__init__.py +0 -0
  178. wandb/proto/v4/wandb_base_pb2.py +30 -0
  179. wandb/proto/v4/wandb_internal_pb2.py +370 -0
  180. wandb/proto/v4/wandb_server_pb2.py +67 -0
  181. wandb/proto/v4/wandb_settings_pb2.py +47 -0
  182. wandb/proto/v4/wandb_telemetry_pb2.py +41 -0
  183. wandb/proto/v5/wandb_base_pb2.py +31 -0
  184. wandb/proto/v5/wandb_internal_pb2.py +371 -0
  185. wandb/proto/v5/wandb_server_pb2.py +68 -0
  186. wandb/proto/v5/wandb_settings_pb2.py +48 -0
  187. wandb/proto/v5/wandb_telemetry_pb2.py +42 -0
  188. wandb/proto/wandb_base_pb2.py +10 -0
  189. wandb/proto/wandb_deprecated.py +45 -0
  190. wandb/proto/wandb_generate_deprecated.py +30 -0
  191. wandb/proto/wandb_generate_proto.py +49 -0
  192. wandb/proto/wandb_internal_pb2.py +16 -0
  193. wandb/proto/wandb_server_pb2.py +10 -0
  194. wandb/proto/wandb_settings_pb2.py +10 -0
  195. wandb/proto/wandb_telemetry_pb2.py +10 -0
  196. wandb/py.typed +0 -0
  197. wandb/sdk/__init__.py +37 -0
  198. wandb/sdk/artifacts/__init__.py +0 -0
  199. wandb/sdk/artifacts/_validators.py +121 -0
  200. wandb/sdk/artifacts/artifact.py +2364 -0
  201. wandb/sdk/artifacts/artifact_download_logger.py +43 -0
  202. wandb/sdk/artifacts/artifact_file_cache.py +249 -0
  203. wandb/sdk/artifacts/artifact_instance_cache.py +17 -0
  204. wandb/sdk/artifacts/artifact_manifest.py +75 -0
  205. wandb/sdk/artifacts/artifact_manifest_entry.py +249 -0
  206. wandb/sdk/artifacts/artifact_manifests/__init__.py +0 -0
  207. wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py +92 -0
  208. wandb/sdk/artifacts/artifact_saver.py +265 -0
  209. wandb/sdk/artifacts/artifact_state.py +11 -0
  210. wandb/sdk/artifacts/artifact_ttl.py +7 -0
  211. wandb/sdk/artifacts/exceptions.py +57 -0
  212. wandb/sdk/artifacts/staging.py +25 -0
  213. wandb/sdk/artifacts/storage_handler.py +62 -0
  214. wandb/sdk/artifacts/storage_handlers/__init__.py +0 -0
  215. wandb/sdk/artifacts/storage_handlers/azure_handler.py +213 -0
  216. wandb/sdk/artifacts/storage_handlers/gcs_handler.py +224 -0
  217. wandb/sdk/artifacts/storage_handlers/http_handler.py +114 -0
  218. wandb/sdk/artifacts/storage_handlers/local_file_handler.py +139 -0
  219. wandb/sdk/artifacts/storage_handlers/multi_handler.py +56 -0
  220. wandb/sdk/artifacts/storage_handlers/s3_handler.py +298 -0
  221. wandb/sdk/artifacts/storage_handlers/tracking_handler.py +72 -0
  222. wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py +135 -0
  223. wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py +74 -0
  224. wandb/sdk/artifacts/storage_layout.py +6 -0
  225. wandb/sdk/artifacts/storage_policies/__init__.py +4 -0
  226. wandb/sdk/artifacts/storage_policies/register.py +1 -0
  227. wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +378 -0
  228. wandb/sdk/artifacts/storage_policy.py +72 -0
  229. wandb/sdk/backend/__init__.py +0 -0
  230. wandb/sdk/backend/backend.py +221 -0
  231. wandb/sdk/data_types/__init__.py +0 -0
  232. wandb/sdk/data_types/_dtypes.py +918 -0
  233. wandb/sdk/data_types/_private.py +10 -0
  234. wandb/sdk/data_types/audio.py +165 -0
  235. wandb/sdk/data_types/base_types/__init__.py +0 -0
  236. wandb/sdk/data_types/base_types/json_metadata.py +55 -0
  237. wandb/sdk/data_types/base_types/media.py +376 -0
  238. wandb/sdk/data_types/base_types/wb_value.py +282 -0
  239. wandb/sdk/data_types/bokeh.py +70 -0
  240. wandb/sdk/data_types/graph.py +405 -0
  241. wandb/sdk/data_types/helper_types/__init__.py +0 -0
  242. wandb/sdk/data_types/helper_types/bounding_boxes_2d.py +305 -0
  243. wandb/sdk/data_types/helper_types/classes.py +159 -0
  244. wandb/sdk/data_types/helper_types/image_mask.py +241 -0
  245. wandb/sdk/data_types/histogram.py +94 -0
  246. wandb/sdk/data_types/html.py +115 -0
  247. wandb/sdk/data_types/image.py +847 -0
  248. wandb/sdk/data_types/molecule.py +241 -0
  249. wandb/sdk/data_types/object_3d.py +470 -0
  250. wandb/sdk/data_types/plotly.py +82 -0
  251. wandb/sdk/data_types/saved_model.py +445 -0
  252. wandb/sdk/data_types/table.py +1204 -0
  253. wandb/sdk/data_types/trace_tree.py +438 -0
  254. wandb/sdk/data_types/utils.py +228 -0
  255. wandb/sdk/data_types/video.py +268 -0
  256. wandb/sdk/integration_utils/__init__.py +0 -0
  257. wandb/sdk/integration_utils/auto_logging.py +232 -0
  258. wandb/sdk/integration_utils/data_logging.py +475 -0
  259. wandb/sdk/interface/__init__.py +0 -0
  260. wandb/sdk/interface/constants.py +4 -0
  261. wandb/sdk/interface/interface.py +1010 -0
  262. wandb/sdk/interface/interface_queue.py +53 -0
  263. wandb/sdk/interface/interface_relay.py +53 -0
  264. wandb/sdk/interface/interface_shared.py +546 -0
  265. wandb/sdk/interface/interface_sock.py +61 -0
  266. wandb/sdk/interface/message_future.py +27 -0
  267. wandb/sdk/interface/message_future_poll.py +50 -0
  268. wandb/sdk/interface/router.py +115 -0
  269. wandb/sdk/interface/router_queue.py +41 -0
  270. wandb/sdk/interface/router_relay.py +37 -0
  271. wandb/sdk/interface/router_sock.py +36 -0
  272. wandb/sdk/interface/summary_record.py +67 -0
  273. wandb/sdk/internal/__init__.py +0 -0
  274. wandb/sdk/internal/context.py +89 -0
  275. wandb/sdk/internal/datastore.py +297 -0
  276. wandb/sdk/internal/file_pusher.py +181 -0
  277. wandb/sdk/internal/file_stream.py +695 -0
  278. wandb/sdk/internal/flow_control.py +263 -0
  279. wandb/sdk/internal/handler.py +905 -0
  280. wandb/sdk/internal/internal.py +403 -0
  281. wandb/sdk/internal/internal_api.py +4587 -0
  282. wandb/sdk/internal/internal_util.py +97 -0
  283. wandb/sdk/internal/job_builder.py +638 -0
  284. wandb/sdk/internal/profiler.py +78 -0
  285. wandb/sdk/internal/progress.py +79 -0
  286. wandb/sdk/internal/run.py +25 -0
  287. wandb/sdk/internal/sample.py +70 -0
  288. wandb/sdk/internal/sender.py +1696 -0
  289. wandb/sdk/internal/sender_config.py +197 -0
  290. wandb/sdk/internal/settings_static.py +97 -0
  291. wandb/sdk/internal/system/__init__.py +0 -0
  292. wandb/sdk/internal/system/assets/__init__.py +25 -0
  293. wandb/sdk/internal/system/assets/aggregators.py +37 -0
  294. wandb/sdk/internal/system/assets/asset_registry.py +20 -0
  295. wandb/sdk/internal/system/assets/cpu.py +163 -0
  296. wandb/sdk/internal/system/assets/disk.py +210 -0
  297. wandb/sdk/internal/system/assets/gpu.py +416 -0
  298. wandb/sdk/internal/system/assets/gpu_amd.py +233 -0
  299. wandb/sdk/internal/system/assets/interfaces.py +205 -0
  300. wandb/sdk/internal/system/assets/ipu.py +177 -0
  301. wandb/sdk/internal/system/assets/memory.py +166 -0
  302. wandb/sdk/internal/system/assets/network.py +125 -0
  303. wandb/sdk/internal/system/assets/open_metrics.py +293 -0
  304. wandb/sdk/internal/system/assets/tpu.py +154 -0
  305. wandb/sdk/internal/system/assets/trainium.py +393 -0
  306. wandb/sdk/internal/system/env_probe_helpers.py +13 -0
  307. wandb/sdk/internal/system/system_info.py +250 -0
  308. wandb/sdk/internal/system/system_monitor.py +222 -0
  309. wandb/sdk/internal/tb_watcher.py +519 -0
  310. wandb/sdk/internal/thread_local_settings.py +18 -0
  311. wandb/sdk/internal/writer.py +204 -0
  312. wandb/sdk/launch/__init__.py +15 -0
  313. wandb/sdk/launch/_launch.py +331 -0
  314. wandb/sdk/launch/_launch_add.py +255 -0
  315. wandb/sdk/launch/_project_spec.py +566 -0
  316. wandb/sdk/launch/agent/__init__.py +5 -0
  317. wandb/sdk/launch/agent/agent.py +924 -0
  318. wandb/sdk/launch/agent/config.py +296 -0
  319. wandb/sdk/launch/agent/job_status_tracker.py +53 -0
  320. wandb/sdk/launch/agent/run_queue_item_file_saver.py +39 -0
  321. wandb/sdk/launch/builder/__init__.py +0 -0
  322. wandb/sdk/launch/builder/abstract.py +156 -0
  323. wandb/sdk/launch/builder/build.py +297 -0
  324. wandb/sdk/launch/builder/context_manager.py +235 -0
  325. wandb/sdk/launch/builder/docker_builder.py +177 -0
  326. wandb/sdk/launch/builder/kaniko_builder.py +594 -0
  327. wandb/sdk/launch/builder/noop.py +58 -0
  328. wandb/sdk/launch/builder/templates/_wandb_bootstrap.py +188 -0
  329. wandb/sdk/launch/builder/templates/dockerfile.py +92 -0
  330. wandb/sdk/launch/create_job.py +528 -0
  331. wandb/sdk/launch/environment/abstract.py +29 -0
  332. wandb/sdk/launch/environment/aws_environment.py +322 -0
  333. wandb/sdk/launch/environment/azure_environment.py +105 -0
  334. wandb/sdk/launch/environment/gcp_environment.py +335 -0
  335. wandb/sdk/launch/environment/local_environment.py +65 -0
  336. wandb/sdk/launch/errors.py +13 -0
  337. wandb/sdk/launch/git_reference.py +109 -0
  338. wandb/sdk/launch/inputs/files.py +148 -0
  339. wandb/sdk/launch/inputs/internal.py +315 -0
  340. wandb/sdk/launch/inputs/manage.py +113 -0
  341. wandb/sdk/launch/inputs/schema.py +39 -0
  342. wandb/sdk/launch/loader.py +249 -0
  343. wandb/sdk/launch/registry/abstract.py +48 -0
  344. wandb/sdk/launch/registry/anon.py +29 -0
  345. wandb/sdk/launch/registry/azure_container_registry.py +124 -0
  346. wandb/sdk/launch/registry/elastic_container_registry.py +192 -0
  347. wandb/sdk/launch/registry/google_artifact_registry.py +219 -0
  348. wandb/sdk/launch/registry/local_registry.py +65 -0
  349. wandb/sdk/launch/runner/__init__.py +0 -0
  350. wandb/sdk/launch/runner/abstract.py +185 -0
  351. wandb/sdk/launch/runner/kubernetes_monitor.py +472 -0
  352. wandb/sdk/launch/runner/kubernetes_runner.py +963 -0
  353. wandb/sdk/launch/runner/local_container.py +301 -0
  354. wandb/sdk/launch/runner/local_process.py +78 -0
  355. wandb/sdk/launch/runner/sagemaker_runner.py +426 -0
  356. wandb/sdk/launch/runner/vertex_runner.py +230 -0
  357. wandb/sdk/launch/sweeps/__init__.py +37 -0
  358. wandb/sdk/launch/sweeps/scheduler.py +740 -0
  359. wandb/sdk/launch/sweeps/scheduler_sweep.py +90 -0
  360. wandb/sdk/launch/sweeps/utils.py +316 -0
  361. wandb/sdk/launch/utils.py +747 -0
  362. wandb/sdk/launch/wandb_reference.py +138 -0
  363. wandb/sdk/lib/__init__.py +5 -0
  364. wandb/sdk/lib/apikey.py +269 -0
  365. wandb/sdk/lib/capped_dict.py +26 -0
  366. wandb/sdk/lib/config_util.py +101 -0
  367. wandb/sdk/lib/credentials.py +141 -0
  368. wandb/sdk/lib/deprecate.py +42 -0
  369. wandb/sdk/lib/disabled.py +29 -0
  370. wandb/sdk/lib/exit_hooks.py +54 -0
  371. wandb/sdk/lib/file_stream_utils.py +118 -0
  372. wandb/sdk/lib/filenames.py +64 -0
  373. wandb/sdk/lib/filesystem.py +372 -0
  374. wandb/sdk/lib/fsm.py +180 -0
  375. wandb/sdk/lib/gitlib.py +239 -0
  376. wandb/sdk/lib/gql_request.py +65 -0
  377. wandb/sdk/lib/handler_util.py +21 -0
  378. wandb/sdk/lib/hashutil.py +84 -0
  379. wandb/sdk/lib/import_hooks.py +275 -0
  380. wandb/sdk/lib/ipython.py +126 -0
  381. wandb/sdk/lib/json_util.py +80 -0
  382. wandb/sdk/lib/lazyloader.py +63 -0
  383. wandb/sdk/lib/mailbox.py +456 -0
  384. wandb/sdk/lib/module.py +78 -0
  385. wandb/sdk/lib/paths.py +106 -0
  386. wandb/sdk/lib/preinit.py +42 -0
  387. wandb/sdk/lib/printer.py +548 -0
  388. wandb/sdk/lib/progress.py +279 -0
  389. wandb/sdk/lib/proto_util.py +90 -0
  390. wandb/sdk/lib/redirect.py +845 -0
  391. wandb/sdk/lib/retry.py +289 -0
  392. wandb/sdk/lib/run_moment.py +72 -0
  393. wandb/sdk/lib/runid.py +12 -0
  394. wandb/sdk/lib/server.py +38 -0
  395. wandb/sdk/lib/service_connection.py +216 -0
  396. wandb/sdk/lib/service_token.py +94 -0
  397. wandb/sdk/lib/sock_client.py +290 -0
  398. wandb/sdk/lib/sparkline.py +44 -0
  399. wandb/sdk/lib/telemetry.py +100 -0
  400. wandb/sdk/lib/timed_input.py +133 -0
  401. wandb/sdk/lib/timer.py +19 -0
  402. wandb/sdk/service/__init__.py +0 -0
  403. wandb/sdk/service/_startup_debug.py +22 -0
  404. wandb/sdk/service/port_file.py +53 -0
  405. wandb/sdk/service/server.py +107 -0
  406. wandb/sdk/service/server_sock.py +274 -0
  407. wandb/sdk/service/service.py +242 -0
  408. wandb/sdk/service/streams.py +425 -0
  409. wandb/sdk/verify/__init__.py +0 -0
  410. wandb/sdk/verify/verify.py +501 -0
  411. wandb/sdk/wandb_alerts.py +12 -0
  412. wandb/sdk/wandb_config.py +322 -0
  413. wandb/sdk/wandb_helper.py +54 -0
  414. wandb/sdk/wandb_init.py +1313 -0
  415. wandb/sdk/wandb_login.py +339 -0
  416. wandb/sdk/wandb_metric.py +110 -0
  417. wandb/sdk/wandb_require.py +94 -0
  418. wandb/sdk/wandb_require_helpers.py +44 -0
  419. wandb/sdk/wandb_run.py +4066 -0
  420. wandb/sdk/wandb_settings.py +1309 -0
  421. wandb/sdk/wandb_setup.py +402 -0
  422. wandb/sdk/wandb_summary.py +150 -0
  423. wandb/sdk/wandb_sweep.py +119 -0
  424. wandb/sdk/wandb_sync.py +82 -0
  425. wandb/sdk/wandb_watch.py +150 -0
  426. wandb/sklearn.py +35 -0
  427. wandb/sync/__init__.py +3 -0
  428. wandb/sync/sync.py +442 -0
  429. wandb/trigger.py +29 -0
  430. wandb/util.py +1955 -0
  431. wandb/vendor/__init__.py +0 -0
  432. wandb/vendor/gql-0.2.0/setup.py +40 -0
  433. wandb/vendor/gql-0.2.0/tests/__init__.py +0 -0
  434. wandb/vendor/gql-0.2.0/tests/starwars/__init__.py +0 -0
  435. wandb/vendor/gql-0.2.0/tests/starwars/fixtures.py +96 -0
  436. wandb/vendor/gql-0.2.0/tests/starwars/schema.py +146 -0
  437. wandb/vendor/gql-0.2.0/tests/starwars/test_dsl.py +293 -0
  438. wandb/vendor/gql-0.2.0/tests/starwars/test_query.py +355 -0
  439. wandb/vendor/gql-0.2.0/tests/starwars/test_validation.py +171 -0
  440. wandb/vendor/gql-0.2.0/tests/test_client.py +31 -0
  441. wandb/vendor/gql-0.2.0/tests/test_transport.py +89 -0
  442. wandb/vendor/gql-0.2.0/wandb_gql/__init__.py +4 -0
  443. wandb/vendor/gql-0.2.0/wandb_gql/client.py +75 -0
  444. wandb/vendor/gql-0.2.0/wandb_gql/dsl.py +152 -0
  445. wandb/vendor/gql-0.2.0/wandb_gql/gql.py +10 -0
  446. wandb/vendor/gql-0.2.0/wandb_gql/transport/__init__.py +0 -0
  447. wandb/vendor/gql-0.2.0/wandb_gql/transport/http.py +6 -0
  448. wandb/vendor/gql-0.2.0/wandb_gql/transport/local_schema.py +15 -0
  449. wandb/vendor/gql-0.2.0/wandb_gql/transport/requests.py +46 -0
  450. wandb/vendor/gql-0.2.0/wandb_gql/utils.py +21 -0
  451. wandb/vendor/graphql-core-1.1/setup.py +86 -0
  452. wandb/vendor/graphql-core-1.1/wandb_graphql/__init__.py +287 -0
  453. wandb/vendor/graphql-core-1.1/wandb_graphql/error/__init__.py +6 -0
  454. wandb/vendor/graphql-core-1.1/wandb_graphql/error/base.py +42 -0
  455. wandb/vendor/graphql-core-1.1/wandb_graphql/error/format_error.py +11 -0
  456. wandb/vendor/graphql-core-1.1/wandb_graphql/error/located_error.py +29 -0
  457. wandb/vendor/graphql-core-1.1/wandb_graphql/error/syntax_error.py +36 -0
  458. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/__init__.py +26 -0
  459. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/base.py +311 -0
  460. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executor.py +398 -0
  461. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/__init__.py +0 -0
  462. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/asyncio.py +53 -0
  463. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/gevent.py +22 -0
  464. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/process.py +32 -0
  465. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/sync.py +7 -0
  466. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/thread.py +35 -0
  467. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/utils.py +6 -0
  468. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/__init__.py +0 -0
  469. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/executor.py +66 -0
  470. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/fragment.py +252 -0
  471. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/resolver.py +151 -0
  472. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/utils.py +7 -0
  473. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/middleware.py +57 -0
  474. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/values.py +145 -0
  475. wandb/vendor/graphql-core-1.1/wandb_graphql/graphql.py +60 -0
  476. wandb/vendor/graphql-core-1.1/wandb_graphql/language/__init__.py +0 -0
  477. wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py +1349 -0
  478. wandb/vendor/graphql-core-1.1/wandb_graphql/language/base.py +19 -0
  479. wandb/vendor/graphql-core-1.1/wandb_graphql/language/lexer.py +435 -0
  480. wandb/vendor/graphql-core-1.1/wandb_graphql/language/location.py +30 -0
  481. wandb/vendor/graphql-core-1.1/wandb_graphql/language/parser.py +779 -0
  482. wandb/vendor/graphql-core-1.1/wandb_graphql/language/printer.py +193 -0
  483. wandb/vendor/graphql-core-1.1/wandb_graphql/language/source.py +18 -0
  484. wandb/vendor/graphql-core-1.1/wandb_graphql/language/visitor.py +222 -0
  485. wandb/vendor/graphql-core-1.1/wandb_graphql/language/visitor_meta.py +82 -0
  486. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/__init__.py +0 -0
  487. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/cached_property.py +17 -0
  488. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/contain_subset.py +28 -0
  489. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/default_ordered_dict.py +40 -0
  490. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/ordereddict.py +8 -0
  491. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/pair_set.py +43 -0
  492. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/version.py +78 -0
  493. wandb/vendor/graphql-core-1.1/wandb_graphql/type/__init__.py +67 -0
  494. wandb/vendor/graphql-core-1.1/wandb_graphql/type/definition.py +619 -0
  495. wandb/vendor/graphql-core-1.1/wandb_graphql/type/directives.py +132 -0
  496. wandb/vendor/graphql-core-1.1/wandb_graphql/type/introspection.py +440 -0
  497. wandb/vendor/graphql-core-1.1/wandb_graphql/type/scalars.py +131 -0
  498. wandb/vendor/graphql-core-1.1/wandb_graphql/type/schema.py +100 -0
  499. wandb/vendor/graphql-core-1.1/wandb_graphql/type/typemap.py +145 -0
  500. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/__init__.py +0 -0
  501. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/assert_valid_name.py +9 -0
  502. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/ast_from_value.py +65 -0
  503. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/ast_to_code.py +49 -0
  504. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/ast_to_dict.py +24 -0
  505. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/base.py +75 -0
  506. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/build_ast_schema.py +291 -0
  507. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/build_client_schema.py +250 -0
  508. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/concat_ast.py +9 -0
  509. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/extend_schema.py +357 -0
  510. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/get_field_def.py +27 -0
  511. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/get_operation_ast.py +21 -0
  512. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/introspection_query.py +90 -0
  513. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/is_valid_literal_value.py +67 -0
  514. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/is_valid_value.py +66 -0
  515. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/quoted_or_list.py +21 -0
  516. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/schema_printer.py +168 -0
  517. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/suggestion_list.py +56 -0
  518. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/type_comparators.py +69 -0
  519. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/type_from_ast.py +21 -0
  520. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/type_info.py +149 -0
  521. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/value_from_ast.py +69 -0
  522. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/__init__.py +4 -0
  523. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/__init__.py +79 -0
  524. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/arguments_of_correct_type.py +24 -0
  525. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/base.py +8 -0
  526. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/default_values_of_correct_type.py +44 -0
  527. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/fields_on_correct_type.py +113 -0
  528. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/fragments_on_composite_types.py +33 -0
  529. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/known_argument_names.py +70 -0
  530. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/known_directives.py +97 -0
  531. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/known_fragment_names.py +19 -0
  532. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/known_type_names.py +43 -0
  533. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/lone_anonymous_operation.py +23 -0
  534. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/no_fragment_cycles.py +59 -0
  535. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/no_undefined_variables.py +36 -0
  536. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/no_unused_fragments.py +38 -0
  537. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/no_unused_variables.py +37 -0
  538. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/overlapping_fields_can_be_merged.py +529 -0
  539. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/possible_fragment_spreads.py +44 -0
  540. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/provided_non_null_arguments.py +46 -0
  541. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/scalar_leafs.py +33 -0
  542. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_argument_names.py +32 -0
  543. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_fragment_names.py +28 -0
  544. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_input_field_names.py +33 -0
  545. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_operation_names.py +31 -0
  546. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_variable_names.py +27 -0
  547. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/variables_are_input_types.py +21 -0
  548. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/variables_in_allowed_position.py +53 -0
  549. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/validation.py +158 -0
  550. wandb/vendor/promise-2.3.0/conftest.py +30 -0
  551. wandb/vendor/promise-2.3.0/setup.py +64 -0
  552. wandb/vendor/promise-2.3.0/tests/__init__.py +0 -0
  553. wandb/vendor/promise-2.3.0/tests/conftest.py +8 -0
  554. wandb/vendor/promise-2.3.0/tests/test_awaitable.py +32 -0
  555. wandb/vendor/promise-2.3.0/tests/test_awaitable_35.py +47 -0
  556. wandb/vendor/promise-2.3.0/tests/test_benchmark.py +116 -0
  557. wandb/vendor/promise-2.3.0/tests/test_complex_threads.py +23 -0
  558. wandb/vendor/promise-2.3.0/tests/test_dataloader.py +452 -0
  559. wandb/vendor/promise-2.3.0/tests/test_dataloader_awaitable_35.py +99 -0
  560. wandb/vendor/promise-2.3.0/tests/test_dataloader_extra.py +65 -0
  561. wandb/vendor/promise-2.3.0/tests/test_extra.py +670 -0
  562. wandb/vendor/promise-2.3.0/tests/test_issues.py +132 -0
  563. wandb/vendor/promise-2.3.0/tests/test_promise_list.py +70 -0
  564. wandb/vendor/promise-2.3.0/tests/test_spec.py +584 -0
  565. wandb/vendor/promise-2.3.0/tests/test_thread_safety.py +115 -0
  566. wandb/vendor/promise-2.3.0/tests/utils.py +3 -0
  567. wandb/vendor/promise-2.3.0/wandb_promise/__init__.py +38 -0
  568. wandb/vendor/promise-2.3.0/wandb_promise/async_.py +135 -0
  569. wandb/vendor/promise-2.3.0/wandb_promise/compat.py +32 -0
  570. wandb/vendor/promise-2.3.0/wandb_promise/dataloader.py +326 -0
  571. wandb/vendor/promise-2.3.0/wandb_promise/iterate_promise.py +12 -0
  572. wandb/vendor/promise-2.3.0/wandb_promise/promise.py +848 -0
  573. wandb/vendor/promise-2.3.0/wandb_promise/promise_list.py +151 -0
  574. wandb/vendor/promise-2.3.0/wandb_promise/pyutils/__init__.py +0 -0
  575. wandb/vendor/promise-2.3.0/wandb_promise/pyutils/version.py +83 -0
  576. wandb/vendor/promise-2.3.0/wandb_promise/schedulers/__init__.py +0 -0
  577. wandb/vendor/promise-2.3.0/wandb_promise/schedulers/asyncio.py +22 -0
  578. wandb/vendor/promise-2.3.0/wandb_promise/schedulers/gevent.py +21 -0
  579. wandb/vendor/promise-2.3.0/wandb_promise/schedulers/immediate.py +27 -0
  580. wandb/vendor/promise-2.3.0/wandb_promise/schedulers/thread.py +18 -0
  581. wandb/vendor/promise-2.3.0/wandb_promise/utils.py +56 -0
  582. wandb/vendor/pygments/__init__.py +90 -0
  583. wandb/vendor/pygments/cmdline.py +568 -0
  584. wandb/vendor/pygments/console.py +74 -0
  585. wandb/vendor/pygments/filter.py +74 -0
  586. wandb/vendor/pygments/filters/__init__.py +350 -0
  587. wandb/vendor/pygments/formatter.py +95 -0
  588. wandb/vendor/pygments/formatters/__init__.py +153 -0
  589. wandb/vendor/pygments/formatters/_mapping.py +85 -0
  590. wandb/vendor/pygments/formatters/bbcode.py +109 -0
  591. wandb/vendor/pygments/formatters/html.py +851 -0
  592. wandb/vendor/pygments/formatters/img.py +600 -0
  593. wandb/vendor/pygments/formatters/irc.py +182 -0
  594. wandb/vendor/pygments/formatters/latex.py +482 -0
  595. wandb/vendor/pygments/formatters/other.py +160 -0
  596. wandb/vendor/pygments/formatters/rtf.py +147 -0
  597. wandb/vendor/pygments/formatters/svg.py +153 -0
  598. wandb/vendor/pygments/formatters/terminal.py +136 -0
  599. wandb/vendor/pygments/formatters/terminal256.py +309 -0
  600. wandb/vendor/pygments/lexer.py +871 -0
  601. wandb/vendor/pygments/lexers/__init__.py +329 -0
  602. wandb/vendor/pygments/lexers/_asy_builtins.py +1645 -0
  603. wandb/vendor/pygments/lexers/_cl_builtins.py +232 -0
  604. wandb/vendor/pygments/lexers/_cocoa_builtins.py +72 -0
  605. wandb/vendor/pygments/lexers/_csound_builtins.py +1346 -0
  606. wandb/vendor/pygments/lexers/_lasso_builtins.py +5327 -0
  607. wandb/vendor/pygments/lexers/_lua_builtins.py +295 -0
  608. wandb/vendor/pygments/lexers/_mapping.py +500 -0
  609. wandb/vendor/pygments/lexers/_mql_builtins.py +1172 -0
  610. wandb/vendor/pygments/lexers/_openedge_builtins.py +2547 -0
  611. wandb/vendor/pygments/lexers/_php_builtins.py +4756 -0
  612. wandb/vendor/pygments/lexers/_postgres_builtins.py +621 -0
  613. wandb/vendor/pygments/lexers/_scilab_builtins.py +3094 -0
  614. wandb/vendor/pygments/lexers/_sourcemod_builtins.py +1163 -0
  615. wandb/vendor/pygments/lexers/_stan_builtins.py +532 -0
  616. wandb/vendor/pygments/lexers/_stata_builtins.py +419 -0
  617. wandb/vendor/pygments/lexers/_tsql_builtins.py +1004 -0
  618. wandb/vendor/pygments/lexers/_vim_builtins.py +1939 -0
  619. wandb/vendor/pygments/lexers/actionscript.py +240 -0
  620. wandb/vendor/pygments/lexers/agile.py +24 -0
  621. wandb/vendor/pygments/lexers/algebra.py +221 -0
  622. wandb/vendor/pygments/lexers/ambient.py +76 -0
  623. wandb/vendor/pygments/lexers/ampl.py +87 -0
  624. wandb/vendor/pygments/lexers/apl.py +101 -0
  625. wandb/vendor/pygments/lexers/archetype.py +318 -0
  626. wandb/vendor/pygments/lexers/asm.py +641 -0
  627. wandb/vendor/pygments/lexers/automation.py +374 -0
  628. wandb/vendor/pygments/lexers/basic.py +500 -0
  629. wandb/vendor/pygments/lexers/bibtex.py +160 -0
  630. wandb/vendor/pygments/lexers/business.py +612 -0
  631. wandb/vendor/pygments/lexers/c_cpp.py +252 -0
  632. wandb/vendor/pygments/lexers/c_like.py +541 -0
  633. wandb/vendor/pygments/lexers/capnproto.py +78 -0
  634. wandb/vendor/pygments/lexers/chapel.py +102 -0
  635. wandb/vendor/pygments/lexers/clean.py +288 -0
  636. wandb/vendor/pygments/lexers/compiled.py +34 -0
  637. wandb/vendor/pygments/lexers/configs.py +833 -0
  638. wandb/vendor/pygments/lexers/console.py +114 -0
  639. wandb/vendor/pygments/lexers/crystal.py +393 -0
  640. wandb/vendor/pygments/lexers/csound.py +366 -0
  641. wandb/vendor/pygments/lexers/css.py +689 -0
  642. wandb/vendor/pygments/lexers/d.py +251 -0
  643. wandb/vendor/pygments/lexers/dalvik.py +125 -0
  644. wandb/vendor/pygments/lexers/data.py +555 -0
  645. wandb/vendor/pygments/lexers/diff.py +165 -0
  646. wandb/vendor/pygments/lexers/dotnet.py +691 -0
  647. wandb/vendor/pygments/lexers/dsls.py +878 -0
  648. wandb/vendor/pygments/lexers/dylan.py +289 -0
  649. wandb/vendor/pygments/lexers/ecl.py +125 -0
  650. wandb/vendor/pygments/lexers/eiffel.py +65 -0
  651. wandb/vendor/pygments/lexers/elm.py +121 -0
  652. wandb/vendor/pygments/lexers/erlang.py +533 -0
  653. wandb/vendor/pygments/lexers/esoteric.py +277 -0
  654. wandb/vendor/pygments/lexers/ezhil.py +69 -0
  655. wandb/vendor/pygments/lexers/factor.py +344 -0
  656. wandb/vendor/pygments/lexers/fantom.py +250 -0
  657. wandb/vendor/pygments/lexers/felix.py +273 -0
  658. wandb/vendor/pygments/lexers/forth.py +177 -0
  659. wandb/vendor/pygments/lexers/fortran.py +205 -0
  660. wandb/vendor/pygments/lexers/foxpro.py +428 -0
  661. wandb/vendor/pygments/lexers/functional.py +21 -0
  662. wandb/vendor/pygments/lexers/go.py +101 -0
  663. wandb/vendor/pygments/lexers/grammar_notation.py +213 -0
  664. wandb/vendor/pygments/lexers/graph.py +80 -0
  665. wandb/vendor/pygments/lexers/graphics.py +553 -0
  666. wandb/vendor/pygments/lexers/haskell.py +843 -0
  667. wandb/vendor/pygments/lexers/haxe.py +936 -0
  668. wandb/vendor/pygments/lexers/hdl.py +382 -0
  669. wandb/vendor/pygments/lexers/hexdump.py +103 -0
  670. wandb/vendor/pygments/lexers/html.py +602 -0
  671. wandb/vendor/pygments/lexers/idl.py +270 -0
  672. wandb/vendor/pygments/lexers/igor.py +288 -0
  673. wandb/vendor/pygments/lexers/inferno.py +96 -0
  674. wandb/vendor/pygments/lexers/installers.py +322 -0
  675. wandb/vendor/pygments/lexers/int_fiction.py +1343 -0
  676. wandb/vendor/pygments/lexers/iolang.py +63 -0
  677. wandb/vendor/pygments/lexers/j.py +146 -0
  678. wandb/vendor/pygments/lexers/javascript.py +1525 -0
  679. wandb/vendor/pygments/lexers/julia.py +333 -0
  680. wandb/vendor/pygments/lexers/jvm.py +1573 -0
  681. wandb/vendor/pygments/lexers/lisp.py +2621 -0
  682. wandb/vendor/pygments/lexers/make.py +202 -0
  683. wandb/vendor/pygments/lexers/markup.py +595 -0
  684. wandb/vendor/pygments/lexers/math.py +21 -0
  685. wandb/vendor/pygments/lexers/matlab.py +663 -0
  686. wandb/vendor/pygments/lexers/ml.py +769 -0
  687. wandb/vendor/pygments/lexers/modeling.py +358 -0
  688. wandb/vendor/pygments/lexers/modula2.py +1561 -0
  689. wandb/vendor/pygments/lexers/monte.py +204 -0
  690. wandb/vendor/pygments/lexers/ncl.py +894 -0
  691. wandb/vendor/pygments/lexers/nimrod.py +159 -0
  692. wandb/vendor/pygments/lexers/nit.py +64 -0
  693. wandb/vendor/pygments/lexers/nix.py +136 -0
  694. wandb/vendor/pygments/lexers/oberon.py +105 -0
  695. wandb/vendor/pygments/lexers/objective.py +504 -0
  696. wandb/vendor/pygments/lexers/ooc.py +85 -0
  697. wandb/vendor/pygments/lexers/other.py +41 -0
  698. wandb/vendor/pygments/lexers/parasail.py +79 -0
  699. wandb/vendor/pygments/lexers/parsers.py +835 -0
  700. wandb/vendor/pygments/lexers/pascal.py +644 -0
  701. wandb/vendor/pygments/lexers/pawn.py +199 -0
  702. wandb/vendor/pygments/lexers/perl.py +620 -0
  703. wandb/vendor/pygments/lexers/php.py +267 -0
  704. wandb/vendor/pygments/lexers/praat.py +294 -0
  705. wandb/vendor/pygments/lexers/prolog.py +306 -0
  706. wandb/vendor/pygments/lexers/python.py +939 -0
  707. wandb/vendor/pygments/lexers/qvt.py +152 -0
  708. wandb/vendor/pygments/lexers/r.py +453 -0
  709. wandb/vendor/pygments/lexers/rdf.py +270 -0
  710. wandb/vendor/pygments/lexers/rebol.py +431 -0
  711. wandb/vendor/pygments/lexers/resource.py +85 -0
  712. wandb/vendor/pygments/lexers/rnc.py +67 -0
  713. wandb/vendor/pygments/lexers/roboconf.py +82 -0
  714. wandb/vendor/pygments/lexers/robotframework.py +560 -0
  715. wandb/vendor/pygments/lexers/ruby.py +519 -0
  716. wandb/vendor/pygments/lexers/rust.py +220 -0
  717. wandb/vendor/pygments/lexers/sas.py +228 -0
  718. wandb/vendor/pygments/lexers/scripting.py +1222 -0
  719. wandb/vendor/pygments/lexers/shell.py +794 -0
  720. wandb/vendor/pygments/lexers/smalltalk.py +195 -0
  721. wandb/vendor/pygments/lexers/smv.py +79 -0
  722. wandb/vendor/pygments/lexers/snobol.py +83 -0
  723. wandb/vendor/pygments/lexers/special.py +103 -0
  724. wandb/vendor/pygments/lexers/sql.py +681 -0
  725. wandb/vendor/pygments/lexers/stata.py +108 -0
  726. wandb/vendor/pygments/lexers/supercollider.py +90 -0
  727. wandb/vendor/pygments/lexers/tcl.py +145 -0
  728. wandb/vendor/pygments/lexers/templates.py +2283 -0
  729. wandb/vendor/pygments/lexers/testing.py +207 -0
  730. wandb/vendor/pygments/lexers/text.py +25 -0
  731. wandb/vendor/pygments/lexers/textedit.py +169 -0
  732. wandb/vendor/pygments/lexers/textfmts.py +297 -0
  733. wandb/vendor/pygments/lexers/theorem.py +458 -0
  734. wandb/vendor/pygments/lexers/trafficscript.py +54 -0
  735. wandb/vendor/pygments/lexers/typoscript.py +226 -0
  736. wandb/vendor/pygments/lexers/urbi.py +133 -0
  737. wandb/vendor/pygments/lexers/varnish.py +190 -0
  738. wandb/vendor/pygments/lexers/verification.py +111 -0
  739. wandb/vendor/pygments/lexers/web.py +24 -0
  740. wandb/vendor/pygments/lexers/webmisc.py +988 -0
  741. wandb/vendor/pygments/lexers/whiley.py +116 -0
  742. wandb/vendor/pygments/lexers/x10.py +69 -0
  743. wandb/vendor/pygments/modeline.py +44 -0
  744. wandb/vendor/pygments/plugin.py +68 -0
  745. wandb/vendor/pygments/regexopt.py +92 -0
  746. wandb/vendor/pygments/scanner.py +105 -0
  747. wandb/vendor/pygments/sphinxext.py +158 -0
  748. wandb/vendor/pygments/style.py +155 -0
  749. wandb/vendor/pygments/styles/__init__.py +80 -0
  750. wandb/vendor/pygments/styles/abap.py +29 -0
  751. wandb/vendor/pygments/styles/algol.py +63 -0
  752. wandb/vendor/pygments/styles/algol_nu.py +63 -0
  753. wandb/vendor/pygments/styles/arduino.py +98 -0
  754. wandb/vendor/pygments/styles/autumn.py +65 -0
  755. wandb/vendor/pygments/styles/borland.py +51 -0
  756. wandb/vendor/pygments/styles/bw.py +49 -0
  757. wandb/vendor/pygments/styles/colorful.py +81 -0
  758. wandb/vendor/pygments/styles/default.py +73 -0
  759. wandb/vendor/pygments/styles/emacs.py +72 -0
  760. wandb/vendor/pygments/styles/friendly.py +72 -0
  761. wandb/vendor/pygments/styles/fruity.py +42 -0
  762. wandb/vendor/pygments/styles/igor.py +29 -0
  763. wandb/vendor/pygments/styles/lovelace.py +97 -0
  764. wandb/vendor/pygments/styles/manni.py +75 -0
  765. wandb/vendor/pygments/styles/monokai.py +106 -0
  766. wandb/vendor/pygments/styles/murphy.py +80 -0
  767. wandb/vendor/pygments/styles/native.py +65 -0
  768. wandb/vendor/pygments/styles/paraiso_dark.py +125 -0
  769. wandb/vendor/pygments/styles/paraiso_light.py +125 -0
  770. wandb/vendor/pygments/styles/pastie.py +75 -0
  771. wandb/vendor/pygments/styles/perldoc.py +69 -0
  772. wandb/vendor/pygments/styles/rainbow_dash.py +89 -0
  773. wandb/vendor/pygments/styles/rrt.py +33 -0
  774. wandb/vendor/pygments/styles/sas.py +44 -0
  775. wandb/vendor/pygments/styles/stata.py +40 -0
  776. wandb/vendor/pygments/styles/tango.py +141 -0
  777. wandb/vendor/pygments/styles/trac.py +63 -0
  778. wandb/vendor/pygments/styles/vim.py +63 -0
  779. wandb/vendor/pygments/styles/vs.py +38 -0
  780. wandb/vendor/pygments/styles/xcode.py +51 -0
  781. wandb/vendor/pygments/token.py +213 -0
  782. wandb/vendor/pygments/unistring.py +217 -0
  783. wandb/vendor/pygments/util.py +388 -0
  784. wandb/vendor/pynvml/__init__.py +0 -0
  785. wandb/vendor/pynvml/pynvml.py +4779 -0
  786. wandb/vendor/watchdog_0_9_0/wandb_watchdog/__init__.py +17 -0
  787. wandb/vendor/watchdog_0_9_0/wandb_watchdog/events.py +615 -0
  788. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/__init__.py +98 -0
  789. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/api.py +369 -0
  790. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/fsevents.py +172 -0
  791. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/fsevents2.py +239 -0
  792. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/inotify.py +218 -0
  793. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/inotify_buffer.py +81 -0
  794. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/inotify_c.py +575 -0
  795. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/kqueue.py +730 -0
  796. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/polling.py +145 -0
  797. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/read_directory_changes.py +133 -0
  798. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/winapi.py +348 -0
  799. wandb/vendor/watchdog_0_9_0/wandb_watchdog/patterns.py +265 -0
  800. wandb/vendor/watchdog_0_9_0/wandb_watchdog/tricks/__init__.py +174 -0
  801. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/__init__.py +151 -0
  802. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/bricks.py +249 -0
  803. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/compat.py +29 -0
  804. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/decorators.py +198 -0
  805. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/delayed_queue.py +88 -0
  806. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/dirsnapshot.py +293 -0
  807. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/echo.py +157 -0
  808. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/event_backport.py +41 -0
  809. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py +40 -0
  810. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py +57 -0
  811. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py +64 -0
  812. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py +123 -0
  813. wandb/vendor/watchdog_0_9_0/wandb_watchdog/version.py +28 -0
  814. wandb/vendor/watchdog_0_9_0/wandb_watchdog/watchmedo.py +577 -0
  815. wandb/wandb_agent.py +588 -0
  816. wandb/wandb_controller.py +719 -0
  817. wandb/wandb_run.py +9 -0
  818. wandb-0.19.1.dist-info/METADATA +223 -0
  819. wandb-0.19.1.dist-info/RECORD +822 -0
  820. wandb-0.19.1.dist-info/WHEEL +5 -0
  821. wandb-0.19.1.dist-info/entry_points.txt +3 -0
  822. wandb-0.19.1.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,3094 @@
1
+ # -*- coding: utf-8 -*-
2
+ """
3
+ pygments.lexers._scilab_builtins
4
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5
+
6
+ Builtin list for the ScilabLexer.
7
+
8
+ :copyright: Copyright 2006-2017 by the Pygments team, see AUTHORS.
9
+ :license: BSD, see LICENSE for details.
10
+ """
11
+
12
+ # Autogenerated
13
+
14
+ commands_kw = (
15
+ 'abort',
16
+ 'apropos',
17
+ 'break',
18
+ 'case',
19
+ 'catch',
20
+ 'continue',
21
+ 'do',
22
+ 'else',
23
+ 'elseif',
24
+ 'end',
25
+ 'endfunction',
26
+ 'for',
27
+ 'function',
28
+ 'help',
29
+ 'if',
30
+ 'pause',
31
+ 'quit',
32
+ 'select',
33
+ 'then',
34
+ 'try',
35
+ 'while',
36
+ )
37
+
38
+ functions_kw = (
39
+ '!!_invoke_',
40
+ '%H5Object_e',
41
+ '%H5Object_fieldnames',
42
+ '%H5Object_p',
43
+ '%XMLAttr_6',
44
+ '%XMLAttr_e',
45
+ '%XMLAttr_i_XMLElem',
46
+ '%XMLAttr_length',
47
+ '%XMLAttr_p',
48
+ '%XMLAttr_size',
49
+ '%XMLDoc_6',
50
+ '%XMLDoc_e',
51
+ '%XMLDoc_i_XMLList',
52
+ '%XMLDoc_p',
53
+ '%XMLElem_6',
54
+ '%XMLElem_e',
55
+ '%XMLElem_i_XMLDoc',
56
+ '%XMLElem_i_XMLElem',
57
+ '%XMLElem_i_XMLList',
58
+ '%XMLElem_p',
59
+ '%XMLList_6',
60
+ '%XMLList_e',
61
+ '%XMLList_i_XMLElem',
62
+ '%XMLList_i_XMLList',
63
+ '%XMLList_length',
64
+ '%XMLList_p',
65
+ '%XMLList_size',
66
+ '%XMLNs_6',
67
+ '%XMLNs_e',
68
+ '%XMLNs_i_XMLElem',
69
+ '%XMLNs_p',
70
+ '%XMLSet_6',
71
+ '%XMLSet_e',
72
+ '%XMLSet_length',
73
+ '%XMLSet_p',
74
+ '%XMLSet_size',
75
+ '%XMLValid_p',
76
+ '%_EClass_6',
77
+ '%_EClass_e',
78
+ '%_EClass_p',
79
+ '%_EObj_0',
80
+ '%_EObj_1__EObj',
81
+ '%_EObj_1_b',
82
+ '%_EObj_1_c',
83
+ '%_EObj_1_i',
84
+ '%_EObj_1_s',
85
+ '%_EObj_2__EObj',
86
+ '%_EObj_2_b',
87
+ '%_EObj_2_c',
88
+ '%_EObj_2_i',
89
+ '%_EObj_2_s',
90
+ '%_EObj_3__EObj',
91
+ '%_EObj_3_b',
92
+ '%_EObj_3_c',
93
+ '%_EObj_3_i',
94
+ '%_EObj_3_s',
95
+ '%_EObj_4__EObj',
96
+ '%_EObj_4_b',
97
+ '%_EObj_4_c',
98
+ '%_EObj_4_i',
99
+ '%_EObj_4_s',
100
+ '%_EObj_5',
101
+ '%_EObj_6',
102
+ '%_EObj_a__EObj',
103
+ '%_EObj_a_b',
104
+ '%_EObj_a_c',
105
+ '%_EObj_a_i',
106
+ '%_EObj_a_s',
107
+ '%_EObj_d__EObj',
108
+ '%_EObj_d_b',
109
+ '%_EObj_d_c',
110
+ '%_EObj_d_i',
111
+ '%_EObj_d_s',
112
+ '%_EObj_disp',
113
+ '%_EObj_e',
114
+ '%_EObj_g__EObj',
115
+ '%_EObj_g_b',
116
+ '%_EObj_g_c',
117
+ '%_EObj_g_i',
118
+ '%_EObj_g_s',
119
+ '%_EObj_h__EObj',
120
+ '%_EObj_h_b',
121
+ '%_EObj_h_c',
122
+ '%_EObj_h_i',
123
+ '%_EObj_h_s',
124
+ '%_EObj_i__EObj',
125
+ '%_EObj_j__EObj',
126
+ '%_EObj_j_b',
127
+ '%_EObj_j_c',
128
+ '%_EObj_j_i',
129
+ '%_EObj_j_s',
130
+ '%_EObj_k__EObj',
131
+ '%_EObj_k_b',
132
+ '%_EObj_k_c',
133
+ '%_EObj_k_i',
134
+ '%_EObj_k_s',
135
+ '%_EObj_l__EObj',
136
+ '%_EObj_l_b',
137
+ '%_EObj_l_c',
138
+ '%_EObj_l_i',
139
+ '%_EObj_l_s',
140
+ '%_EObj_m__EObj',
141
+ '%_EObj_m_b',
142
+ '%_EObj_m_c',
143
+ '%_EObj_m_i',
144
+ '%_EObj_m_s',
145
+ '%_EObj_n__EObj',
146
+ '%_EObj_n_b',
147
+ '%_EObj_n_c',
148
+ '%_EObj_n_i',
149
+ '%_EObj_n_s',
150
+ '%_EObj_o__EObj',
151
+ '%_EObj_o_b',
152
+ '%_EObj_o_c',
153
+ '%_EObj_o_i',
154
+ '%_EObj_o_s',
155
+ '%_EObj_p',
156
+ '%_EObj_p__EObj',
157
+ '%_EObj_p_b',
158
+ '%_EObj_p_c',
159
+ '%_EObj_p_i',
160
+ '%_EObj_p_s',
161
+ '%_EObj_q__EObj',
162
+ '%_EObj_q_b',
163
+ '%_EObj_q_c',
164
+ '%_EObj_q_i',
165
+ '%_EObj_q_s',
166
+ '%_EObj_r__EObj',
167
+ '%_EObj_r_b',
168
+ '%_EObj_r_c',
169
+ '%_EObj_r_i',
170
+ '%_EObj_r_s',
171
+ '%_EObj_s__EObj',
172
+ '%_EObj_s_b',
173
+ '%_EObj_s_c',
174
+ '%_EObj_s_i',
175
+ '%_EObj_s_s',
176
+ '%_EObj_t',
177
+ '%_EObj_x__EObj',
178
+ '%_EObj_x_b',
179
+ '%_EObj_x_c',
180
+ '%_EObj_x_i',
181
+ '%_EObj_x_s',
182
+ '%_EObj_y__EObj',
183
+ '%_EObj_y_b',
184
+ '%_EObj_y_c',
185
+ '%_EObj_y_i',
186
+ '%_EObj_y_s',
187
+ '%_EObj_z__EObj',
188
+ '%_EObj_z_b',
189
+ '%_EObj_z_c',
190
+ '%_EObj_z_i',
191
+ '%_EObj_z_s',
192
+ '%_eigs',
193
+ '%_load',
194
+ '%b_1__EObj',
195
+ '%b_2__EObj',
196
+ '%b_3__EObj',
197
+ '%b_4__EObj',
198
+ '%b_a__EObj',
199
+ '%b_d__EObj',
200
+ '%b_g__EObj',
201
+ '%b_h__EObj',
202
+ '%b_i_XMLList',
203
+ '%b_i__EObj',
204
+ '%b_j__EObj',
205
+ '%b_k__EObj',
206
+ '%b_l__EObj',
207
+ '%b_m__EObj',
208
+ '%b_n__EObj',
209
+ '%b_o__EObj',
210
+ '%b_p__EObj',
211
+ '%b_q__EObj',
212
+ '%b_r__EObj',
213
+ '%b_s__EObj',
214
+ '%b_x__EObj',
215
+ '%b_y__EObj',
216
+ '%b_z__EObj',
217
+ '%c_1__EObj',
218
+ '%c_2__EObj',
219
+ '%c_3__EObj',
220
+ '%c_4__EObj',
221
+ '%c_a__EObj',
222
+ '%c_d__EObj',
223
+ '%c_g__EObj',
224
+ '%c_h__EObj',
225
+ '%c_i_XMLAttr',
226
+ '%c_i_XMLDoc',
227
+ '%c_i_XMLElem',
228
+ '%c_i_XMLList',
229
+ '%c_i__EObj',
230
+ '%c_j__EObj',
231
+ '%c_k__EObj',
232
+ '%c_l__EObj',
233
+ '%c_m__EObj',
234
+ '%c_n__EObj',
235
+ '%c_o__EObj',
236
+ '%c_p__EObj',
237
+ '%c_q__EObj',
238
+ '%c_r__EObj',
239
+ '%c_s__EObj',
240
+ '%c_x__EObj',
241
+ '%c_y__EObj',
242
+ '%c_z__EObj',
243
+ '%ce_i_XMLList',
244
+ '%fptr_i_XMLList',
245
+ '%h_i_XMLList',
246
+ '%hm_i_XMLList',
247
+ '%i_1__EObj',
248
+ '%i_2__EObj',
249
+ '%i_3__EObj',
250
+ '%i_4__EObj',
251
+ '%i_a__EObj',
252
+ '%i_abs',
253
+ '%i_cumprod',
254
+ '%i_cumsum',
255
+ '%i_d__EObj',
256
+ '%i_diag',
257
+ '%i_g__EObj',
258
+ '%i_h__EObj',
259
+ '%i_i_XMLList',
260
+ '%i_i__EObj',
261
+ '%i_j__EObj',
262
+ '%i_k__EObj',
263
+ '%i_l__EObj',
264
+ '%i_m__EObj',
265
+ '%i_matrix',
266
+ '%i_max',
267
+ '%i_maxi',
268
+ '%i_min',
269
+ '%i_mini',
270
+ '%i_mput',
271
+ '%i_n__EObj',
272
+ '%i_o__EObj',
273
+ '%i_p',
274
+ '%i_p__EObj',
275
+ '%i_prod',
276
+ '%i_q__EObj',
277
+ '%i_r__EObj',
278
+ '%i_s__EObj',
279
+ '%i_sum',
280
+ '%i_tril',
281
+ '%i_triu',
282
+ '%i_x__EObj',
283
+ '%i_y__EObj',
284
+ '%i_z__EObj',
285
+ '%ip_i_XMLList',
286
+ '%l_i_XMLList',
287
+ '%l_i__EObj',
288
+ '%lss_i_XMLList',
289
+ '%mc_i_XMLList',
290
+ '%msp_full',
291
+ '%msp_i_XMLList',
292
+ '%msp_spget',
293
+ '%p_i_XMLList',
294
+ '%ptr_i_XMLList',
295
+ '%r_i_XMLList',
296
+ '%s_1__EObj',
297
+ '%s_2__EObj',
298
+ '%s_3__EObj',
299
+ '%s_4__EObj',
300
+ '%s_a__EObj',
301
+ '%s_d__EObj',
302
+ '%s_g__EObj',
303
+ '%s_h__EObj',
304
+ '%s_i_XMLList',
305
+ '%s_i__EObj',
306
+ '%s_j__EObj',
307
+ '%s_k__EObj',
308
+ '%s_l__EObj',
309
+ '%s_m__EObj',
310
+ '%s_n__EObj',
311
+ '%s_o__EObj',
312
+ '%s_p__EObj',
313
+ '%s_q__EObj',
314
+ '%s_r__EObj',
315
+ '%s_s__EObj',
316
+ '%s_x__EObj',
317
+ '%s_y__EObj',
318
+ '%s_z__EObj',
319
+ '%sp_i_XMLList',
320
+ '%spb_i_XMLList',
321
+ '%st_i_XMLList',
322
+ 'Calendar',
323
+ 'ClipBoard',
324
+ 'Matplot',
325
+ 'Matplot1',
326
+ 'PlaySound',
327
+ 'TCL_DeleteInterp',
328
+ 'TCL_DoOneEvent',
329
+ 'TCL_EvalFile',
330
+ 'TCL_EvalStr',
331
+ 'TCL_ExistArray',
332
+ 'TCL_ExistInterp',
333
+ 'TCL_ExistVar',
334
+ 'TCL_GetVar',
335
+ 'TCL_GetVersion',
336
+ 'TCL_SetVar',
337
+ 'TCL_UnsetVar',
338
+ 'TCL_UpVar',
339
+ '_',
340
+ '_code2str',
341
+ '_d',
342
+ '_str2code',
343
+ 'about',
344
+ 'abs',
345
+ 'acos',
346
+ 'addModulePreferences',
347
+ 'addcolor',
348
+ 'addf',
349
+ 'addhistory',
350
+ 'addinter',
351
+ 'addlocalizationdomain',
352
+ 'amell',
353
+ 'and',
354
+ 'argn',
355
+ 'arl2_ius',
356
+ 'ascii',
357
+ 'asin',
358
+ 'atan',
359
+ 'backslash',
360
+ 'balanc',
361
+ 'banner',
362
+ 'base2dec',
363
+ 'basename',
364
+ 'bdiag',
365
+ 'beep',
366
+ 'besselh',
367
+ 'besseli',
368
+ 'besselj',
369
+ 'besselk',
370
+ 'bessely',
371
+ 'beta',
372
+ 'bezout',
373
+ 'bfinit',
374
+ 'blkfc1i',
375
+ 'blkslvi',
376
+ 'bool2s',
377
+ 'browsehistory',
378
+ 'browsevar',
379
+ 'bsplin3val',
380
+ 'buildDoc',
381
+ 'buildouttb',
382
+ 'bvode',
383
+ 'c_link',
384
+ 'call',
385
+ 'callblk',
386
+ 'captions',
387
+ 'cd',
388
+ 'cdfbet',
389
+ 'cdfbin',
390
+ 'cdfchi',
391
+ 'cdfchn',
392
+ 'cdff',
393
+ 'cdffnc',
394
+ 'cdfgam',
395
+ 'cdfnbn',
396
+ 'cdfnor',
397
+ 'cdfpoi',
398
+ 'cdft',
399
+ 'ceil',
400
+ 'champ',
401
+ 'champ1',
402
+ 'chdir',
403
+ 'chol',
404
+ 'clc',
405
+ 'clean',
406
+ 'clear',
407
+ 'clearfun',
408
+ 'clearglobal',
409
+ 'closeEditor',
410
+ 'closeEditvar',
411
+ 'closeXcos',
412
+ 'code2str',
413
+ 'coeff',
414
+ 'color',
415
+ 'comp',
416
+ 'completion',
417
+ 'conj',
418
+ 'contour2di',
419
+ 'contr',
420
+ 'conv2',
421
+ 'convstr',
422
+ 'copy',
423
+ 'copyfile',
424
+ 'corr',
425
+ 'cos',
426
+ 'coserror',
427
+ 'createdir',
428
+ 'cshep2d',
429
+ 'csvDefault',
430
+ 'csvIsnum',
431
+ 'csvRead',
432
+ 'csvStringToDouble',
433
+ 'csvTextScan',
434
+ 'csvWrite',
435
+ 'ctree2',
436
+ 'ctree3',
437
+ 'ctree4',
438
+ 'cumprod',
439
+ 'cumsum',
440
+ 'curblock',
441
+ 'curblockc',
442
+ 'daskr',
443
+ 'dasrt',
444
+ 'dassl',
445
+ 'data2sig',
446
+ 'datatipCreate',
447
+ 'datatipManagerMode',
448
+ 'datatipMove',
449
+ 'datatipRemove',
450
+ 'datatipSetDisplay',
451
+ 'datatipSetInterp',
452
+ 'datatipSetOrientation',
453
+ 'datatipSetStyle',
454
+ 'datatipToggle',
455
+ 'dawson',
456
+ 'dct',
457
+ 'debug',
458
+ 'dec2base',
459
+ 'deff',
460
+ 'definedfields',
461
+ 'degree',
462
+ 'delbpt',
463
+ 'delete',
464
+ 'deletefile',
465
+ 'delip',
466
+ 'delmenu',
467
+ 'det',
468
+ 'dgettext',
469
+ 'dhinf',
470
+ 'diag',
471
+ 'diary',
472
+ 'diffobjs',
473
+ 'disp',
474
+ 'dispbpt',
475
+ 'displayhistory',
476
+ 'disposefftwlibrary',
477
+ 'dlgamma',
478
+ 'dnaupd',
479
+ 'dneupd',
480
+ 'double',
481
+ 'drawaxis',
482
+ 'drawlater',
483
+ 'drawnow',
484
+ 'driver',
485
+ 'dsaupd',
486
+ 'dsearch',
487
+ 'dseupd',
488
+ 'dst',
489
+ 'duplicate',
490
+ 'editvar',
491
+ 'emptystr',
492
+ 'end_scicosim',
493
+ 'ereduc',
494
+ 'erf',
495
+ 'erfc',
496
+ 'erfcx',
497
+ 'erfi',
498
+ 'errcatch',
499
+ 'errclear',
500
+ 'error',
501
+ 'eval_cshep2d',
502
+ 'exec',
503
+ 'execstr',
504
+ 'exists',
505
+ 'exit',
506
+ 'exp',
507
+ 'expm',
508
+ 'exportUI',
509
+ 'export_to_hdf5',
510
+ 'eye',
511
+ 'fadj2sp',
512
+ 'fec',
513
+ 'feval',
514
+ 'fft',
515
+ 'fftw',
516
+ 'fftw_flags',
517
+ 'fftw_forget_wisdom',
518
+ 'fftwlibraryisloaded',
519
+ 'figure',
520
+ 'file',
521
+ 'filebrowser',
522
+ 'fileext',
523
+ 'fileinfo',
524
+ 'fileparts',
525
+ 'filesep',
526
+ 'find',
527
+ 'findBD',
528
+ 'findfiles',
529
+ 'fire_closing_finished',
530
+ 'floor',
531
+ 'format',
532
+ 'fort',
533
+ 'fprintfMat',
534
+ 'freq',
535
+ 'frexp',
536
+ 'fromc',
537
+ 'fromjava',
538
+ 'fscanfMat',
539
+ 'fsolve',
540
+ 'fstair',
541
+ 'full',
542
+ 'fullpath',
543
+ 'funcprot',
544
+ 'funptr',
545
+ 'gamma',
546
+ 'gammaln',
547
+ 'geom3d',
548
+ 'get',
549
+ 'getURL',
550
+ 'get_absolute_file_path',
551
+ 'get_fftw_wisdom',
552
+ 'getblocklabel',
553
+ 'getcallbackobject',
554
+ 'getdate',
555
+ 'getdebuginfo',
556
+ 'getdefaultlanguage',
557
+ 'getdrives',
558
+ 'getdynlibext',
559
+ 'getenv',
560
+ 'getfield',
561
+ 'gethistory',
562
+ 'gethistoryfile',
563
+ 'getinstalledlookandfeels',
564
+ 'getio',
565
+ 'getlanguage',
566
+ 'getlongpathname',
567
+ 'getlookandfeel',
568
+ 'getmd5',
569
+ 'getmemory',
570
+ 'getmodules',
571
+ 'getos',
572
+ 'getpid',
573
+ 'getrelativefilename',
574
+ 'getscicosvars',
575
+ 'getscilabmode',
576
+ 'getshortpathname',
577
+ 'gettext',
578
+ 'getvariablesonstack',
579
+ 'getversion',
580
+ 'glist',
581
+ 'global',
582
+ 'glue',
583
+ 'grand',
584
+ 'graphicfunction',
585
+ 'grayplot',
586
+ 'grep',
587
+ 'gsort',
588
+ 'gstacksize',
589
+ 'h5attr',
590
+ 'h5close',
591
+ 'h5cp',
592
+ 'h5dataset',
593
+ 'h5dump',
594
+ 'h5exists',
595
+ 'h5flush',
596
+ 'h5get',
597
+ 'h5group',
598
+ 'h5isArray',
599
+ 'h5isAttr',
600
+ 'h5isCompound',
601
+ 'h5isFile',
602
+ 'h5isGroup',
603
+ 'h5isList',
604
+ 'h5isRef',
605
+ 'h5isSet',
606
+ 'h5isSpace',
607
+ 'h5isType',
608
+ 'h5isVlen',
609
+ 'h5label',
610
+ 'h5ln',
611
+ 'h5ls',
612
+ 'h5mount',
613
+ 'h5mv',
614
+ 'h5open',
615
+ 'h5read',
616
+ 'h5readattr',
617
+ 'h5rm',
618
+ 'h5umount',
619
+ 'h5write',
620
+ 'h5writeattr',
621
+ 'havewindow',
622
+ 'helpbrowser',
623
+ 'hess',
624
+ 'hinf',
625
+ 'historymanager',
626
+ 'historysize',
627
+ 'host',
628
+ 'htmlDump',
629
+ 'htmlRead',
630
+ 'htmlReadStr',
631
+ 'htmlWrite',
632
+ 'iconvert',
633
+ 'ieee',
634
+ 'ilib_verbose',
635
+ 'imag',
636
+ 'impl',
637
+ 'import_from_hdf5',
638
+ 'imult',
639
+ 'inpnvi',
640
+ 'int',
641
+ 'int16',
642
+ 'int2d',
643
+ 'int32',
644
+ 'int3d',
645
+ 'int8',
646
+ 'interp',
647
+ 'interp2d',
648
+ 'interp3d',
649
+ 'intg',
650
+ 'intppty',
651
+ 'inttype',
652
+ 'inv',
653
+ 'invoke_lu',
654
+ 'is_handle_valid',
655
+ 'is_hdf5_file',
656
+ 'isalphanum',
657
+ 'isascii',
658
+ 'isdef',
659
+ 'isdigit',
660
+ 'isdir',
661
+ 'isequal',
662
+ 'isequalbitwise',
663
+ 'iserror',
664
+ 'isfile',
665
+ 'isglobal',
666
+ 'isletter',
667
+ 'isnum',
668
+ 'isreal',
669
+ 'iswaitingforinput',
670
+ 'jallowClassReloading',
671
+ 'jarray',
672
+ 'jautoTranspose',
673
+ 'jautoUnwrap',
674
+ 'javaclasspath',
675
+ 'javalibrarypath',
676
+ 'jcast',
677
+ 'jcompile',
678
+ 'jconvMatrixMethod',
679
+ 'jcreatejar',
680
+ 'jdeff',
681
+ 'jdisableTrace',
682
+ 'jenableTrace',
683
+ 'jexists',
684
+ 'jgetclassname',
685
+ 'jgetfield',
686
+ 'jgetfields',
687
+ 'jgetinfo',
688
+ 'jgetmethods',
689
+ 'jimport',
690
+ 'jinvoke',
691
+ 'jinvoke_db',
692
+ 'jnewInstance',
693
+ 'jremove',
694
+ 'jsetfield',
695
+ 'junwrap',
696
+ 'junwraprem',
697
+ 'jwrap',
698
+ 'jwrapinfloat',
699
+ 'kron',
700
+ 'lasterror',
701
+ 'ldiv',
702
+ 'ldivf',
703
+ 'legendre',
704
+ 'length',
705
+ 'lib',
706
+ 'librarieslist',
707
+ 'libraryinfo',
708
+ 'light',
709
+ 'linear_interpn',
710
+ 'lines',
711
+ 'link',
712
+ 'linmeq',
713
+ 'list',
714
+ 'listvar_in_hdf5',
715
+ 'load',
716
+ 'loadGui',
717
+ 'loadScicos',
718
+ 'loadXcos',
719
+ 'loadfftwlibrary',
720
+ 'loadhistory',
721
+ 'log',
722
+ 'log1p',
723
+ 'lsq',
724
+ 'lsq_splin',
725
+ 'lsqrsolve',
726
+ 'lsslist',
727
+ 'lstcat',
728
+ 'lstsize',
729
+ 'ltitr',
730
+ 'lu',
731
+ 'ludel',
732
+ 'lufact',
733
+ 'luget',
734
+ 'lusolve',
735
+ 'macr2lst',
736
+ 'macr2tree',
737
+ 'matfile_close',
738
+ 'matfile_listvar',
739
+ 'matfile_open',
740
+ 'matfile_varreadnext',
741
+ 'matfile_varwrite',
742
+ 'matrix',
743
+ 'max',
744
+ 'maxfiles',
745
+ 'mclearerr',
746
+ 'mclose',
747
+ 'meof',
748
+ 'merror',
749
+ 'messagebox',
750
+ 'mfprintf',
751
+ 'mfscanf',
752
+ 'mget',
753
+ 'mgeti',
754
+ 'mgetl',
755
+ 'mgetstr',
756
+ 'min',
757
+ 'mlist',
758
+ 'mode',
759
+ 'model2blk',
760
+ 'mopen',
761
+ 'move',
762
+ 'movefile',
763
+ 'mprintf',
764
+ 'mput',
765
+ 'mputl',
766
+ 'mputstr',
767
+ 'mscanf',
768
+ 'mseek',
769
+ 'msprintf',
770
+ 'msscanf',
771
+ 'mtell',
772
+ 'mtlb_mode',
773
+ 'mtlb_sparse',
774
+ 'mucomp',
775
+ 'mulf',
776
+ 'name2rgb',
777
+ 'nearfloat',
778
+ 'newaxes',
779
+ 'newest',
780
+ 'newfun',
781
+ 'nnz',
782
+ 'norm',
783
+ 'notify',
784
+ 'number_properties',
785
+ 'ode',
786
+ 'odedc',
787
+ 'ones',
788
+ 'openged',
789
+ 'opentk',
790
+ 'optim',
791
+ 'or',
792
+ 'ordmmd',
793
+ 'parallel_concurrency',
794
+ 'parallel_run',
795
+ 'param3d',
796
+ 'param3d1',
797
+ 'part',
798
+ 'pathconvert',
799
+ 'pathsep',
800
+ 'phase_simulation',
801
+ 'plot2d',
802
+ 'plot2d1',
803
+ 'plot2d2',
804
+ 'plot2d3',
805
+ 'plot2d4',
806
+ 'plot3d',
807
+ 'plot3d1',
808
+ 'plotbrowser',
809
+ 'pointer_xproperty',
810
+ 'poly',
811
+ 'ppol',
812
+ 'pppdiv',
813
+ 'predef',
814
+ 'preferences',
815
+ 'print',
816
+ 'printf',
817
+ 'printfigure',
818
+ 'printsetupbox',
819
+ 'prod',
820
+ 'progressionbar',
821
+ 'prompt',
822
+ 'pwd',
823
+ 'qld',
824
+ 'qp_solve',
825
+ 'qr',
826
+ 'raise_window',
827
+ 'rand',
828
+ 'rankqr',
829
+ 'rat',
830
+ 'rcond',
831
+ 'rdivf',
832
+ 'read',
833
+ 'read4b',
834
+ 'read_csv',
835
+ 'readb',
836
+ 'readgateway',
837
+ 'readmps',
838
+ 'real',
839
+ 'realtime',
840
+ 'realtimeinit',
841
+ 'regexp',
842
+ 'relocate_handle',
843
+ 'remez',
844
+ 'removeModulePreferences',
845
+ 'removedir',
846
+ 'removelinehistory',
847
+ 'res_with_prec',
848
+ 'resethistory',
849
+ 'residu',
850
+ 'resume',
851
+ 'return',
852
+ 'ricc',
853
+ 'rlist',
854
+ 'roots',
855
+ 'rotate_axes',
856
+ 'round',
857
+ 'rpem',
858
+ 'rtitr',
859
+ 'rubberbox',
860
+ 'save',
861
+ 'saveGui',
862
+ 'saveafterncommands',
863
+ 'saveconsecutivecommands',
864
+ 'savehistory',
865
+ 'schur',
866
+ 'sci_haltscicos',
867
+ 'sci_tree2',
868
+ 'sci_tree3',
869
+ 'sci_tree4',
870
+ 'sciargs',
871
+ 'scicos_debug',
872
+ 'scicos_debug_count',
873
+ 'scicos_time',
874
+ 'scicosim',
875
+ 'scinotes',
876
+ 'sctree',
877
+ 'semidef',
878
+ 'set',
879
+ 'set_blockerror',
880
+ 'set_fftw_wisdom',
881
+ 'set_xproperty',
882
+ 'setbpt',
883
+ 'setdefaultlanguage',
884
+ 'setenv',
885
+ 'setfield',
886
+ 'sethistoryfile',
887
+ 'setlanguage',
888
+ 'setlookandfeel',
889
+ 'setmenu',
890
+ 'sfact',
891
+ 'sfinit',
892
+ 'show_window',
893
+ 'sident',
894
+ 'sig2data',
895
+ 'sign',
896
+ 'simp',
897
+ 'simp_mode',
898
+ 'sin',
899
+ 'size',
900
+ 'slash',
901
+ 'sleep',
902
+ 'sorder',
903
+ 'sparse',
904
+ 'spchol',
905
+ 'spcompack',
906
+ 'spec',
907
+ 'spget',
908
+ 'splin',
909
+ 'splin2d',
910
+ 'splin3d',
911
+ 'splitURL',
912
+ 'spones',
913
+ 'sprintf',
914
+ 'sqrt',
915
+ 'stacksize',
916
+ 'str2code',
917
+ 'strcat',
918
+ 'strchr',
919
+ 'strcmp',
920
+ 'strcspn',
921
+ 'strindex',
922
+ 'string',
923
+ 'stringbox',
924
+ 'stripblanks',
925
+ 'strncpy',
926
+ 'strrchr',
927
+ 'strrev',
928
+ 'strsplit',
929
+ 'strspn',
930
+ 'strstr',
931
+ 'strsubst',
932
+ 'strtod',
933
+ 'strtok',
934
+ 'subf',
935
+ 'sum',
936
+ 'svd',
937
+ 'swap_handles',
938
+ 'symfcti',
939
+ 'syredi',
940
+ 'system_getproperty',
941
+ 'system_setproperty',
942
+ 'ta2lpd',
943
+ 'tan',
944
+ 'taucs_chdel',
945
+ 'taucs_chfact',
946
+ 'taucs_chget',
947
+ 'taucs_chinfo',
948
+ 'taucs_chsolve',
949
+ 'tempname',
950
+ 'testmatrix',
951
+ 'timer',
952
+ 'tlist',
953
+ 'tohome',
954
+ 'tokens',
955
+ 'toolbar',
956
+ 'toprint',
957
+ 'tr_zer',
958
+ 'tril',
959
+ 'triu',
960
+ 'type',
961
+ 'typename',
962
+ 'uiDisplayTree',
963
+ 'uicontextmenu',
964
+ 'uicontrol',
965
+ 'uigetcolor',
966
+ 'uigetdir',
967
+ 'uigetfile',
968
+ 'uigetfont',
969
+ 'uimenu',
970
+ 'uint16',
971
+ 'uint32',
972
+ 'uint8',
973
+ 'uipopup',
974
+ 'uiputfile',
975
+ 'uiwait',
976
+ 'ulink',
977
+ 'umf_ludel',
978
+ 'umf_lufact',
979
+ 'umf_luget',
980
+ 'umf_luinfo',
981
+ 'umf_lusolve',
982
+ 'umfpack',
983
+ 'unglue',
984
+ 'unix',
985
+ 'unsetmenu',
986
+ 'unzoom',
987
+ 'updatebrowsevar',
988
+ 'usecanvas',
989
+ 'useeditor',
990
+ 'user',
991
+ 'var2vec',
992
+ 'varn',
993
+ 'vec2var',
994
+ 'waitbar',
995
+ 'warnBlockByUID',
996
+ 'warning',
997
+ 'what',
998
+ 'where',
999
+ 'whereis',
1000
+ 'who',
1001
+ 'winsid',
1002
+ 'with_module',
1003
+ 'writb',
1004
+ 'write',
1005
+ 'write4b',
1006
+ 'write_csv',
1007
+ 'x_choose',
1008
+ 'x_choose_modeless',
1009
+ 'x_dialog',
1010
+ 'x_mdialog',
1011
+ 'xarc',
1012
+ 'xarcs',
1013
+ 'xarrows',
1014
+ 'xchange',
1015
+ 'xchoicesi',
1016
+ 'xclick',
1017
+ 'xcos',
1018
+ 'xcosAddToolsMenu',
1019
+ 'xcosConfigureXmlFile',
1020
+ 'xcosDiagramToScilab',
1021
+ 'xcosPalCategoryAdd',
1022
+ 'xcosPalDelete',
1023
+ 'xcosPalDisable',
1024
+ 'xcosPalEnable',
1025
+ 'xcosPalGenerateIcon',
1026
+ 'xcosPalGet',
1027
+ 'xcosPalLoad',
1028
+ 'xcosPalMove',
1029
+ 'xcosSimulationStarted',
1030
+ 'xcosUpdateBlock',
1031
+ 'xdel',
1032
+ 'xend',
1033
+ 'xfarc',
1034
+ 'xfarcs',
1035
+ 'xfpoly',
1036
+ 'xfpolys',
1037
+ 'xfrect',
1038
+ 'xget',
1039
+ 'xgetmouse',
1040
+ 'xgraduate',
1041
+ 'xgrid',
1042
+ 'xinit',
1043
+ 'xlfont',
1044
+ 'xls_open',
1045
+ 'xls_read',
1046
+ 'xmlAddNs',
1047
+ 'xmlAppend',
1048
+ 'xmlAsNumber',
1049
+ 'xmlAsText',
1050
+ 'xmlDTD',
1051
+ 'xmlDelete',
1052
+ 'xmlDocument',
1053
+ 'xmlDump',
1054
+ 'xmlElement',
1055
+ 'xmlFormat',
1056
+ 'xmlGetNsByHref',
1057
+ 'xmlGetNsByPrefix',
1058
+ 'xmlGetOpenDocs',
1059
+ 'xmlIsValidObject',
1060
+ 'xmlName',
1061
+ 'xmlNs',
1062
+ 'xmlRead',
1063
+ 'xmlReadStr',
1064
+ 'xmlRelaxNG',
1065
+ 'xmlRemove',
1066
+ 'xmlSchema',
1067
+ 'xmlSetAttributes',
1068
+ 'xmlValidate',
1069
+ 'xmlWrite',
1070
+ 'xmlXPath',
1071
+ 'xname',
1072
+ 'xpause',
1073
+ 'xpoly',
1074
+ 'xpolys',
1075
+ 'xrect',
1076
+ 'xrects',
1077
+ 'xs2bmp',
1078
+ 'xs2emf',
1079
+ 'xs2eps',
1080
+ 'xs2gif',
1081
+ 'xs2jpg',
1082
+ 'xs2pdf',
1083
+ 'xs2png',
1084
+ 'xs2ppm',
1085
+ 'xs2ps',
1086
+ 'xs2svg',
1087
+ 'xsegs',
1088
+ 'xset',
1089
+ 'xstring',
1090
+ 'xstringb',
1091
+ 'xtitle',
1092
+ 'zeros',
1093
+ 'znaupd',
1094
+ 'zneupd',
1095
+ 'zoom_rect',
1096
+ )
1097
+
1098
+ macros_kw = (
1099
+ '!_deff_wrapper',
1100
+ '%0_i_st',
1101
+ '%3d_i_h',
1102
+ '%Block_xcosUpdateBlock',
1103
+ '%TNELDER_p',
1104
+ '%TNELDER_string',
1105
+ '%TNMPLOT_p',
1106
+ '%TNMPLOT_string',
1107
+ '%TOPTIM_p',
1108
+ '%TOPTIM_string',
1109
+ '%TSIMPLEX_p',
1110
+ '%TSIMPLEX_string',
1111
+ '%_EVoid_p',
1112
+ '%_gsort',
1113
+ '%_listvarinfile',
1114
+ '%_rlist',
1115
+ '%_save',
1116
+ '%_sodload',
1117
+ '%_strsplit',
1118
+ '%_unwrap',
1119
+ '%ar_p',
1120
+ '%asn',
1121
+ '%b_a_b',
1122
+ '%b_a_s',
1123
+ '%b_c_s',
1124
+ '%b_c_spb',
1125
+ '%b_cumprod',
1126
+ '%b_cumsum',
1127
+ '%b_d_s',
1128
+ '%b_diag',
1129
+ '%b_e',
1130
+ '%b_f_s',
1131
+ '%b_f_spb',
1132
+ '%b_g_s',
1133
+ '%b_g_spb',
1134
+ '%b_grand',
1135
+ '%b_h_s',
1136
+ '%b_h_spb',
1137
+ '%b_i_b',
1138
+ '%b_i_ce',
1139
+ '%b_i_h',
1140
+ '%b_i_hm',
1141
+ '%b_i_s',
1142
+ '%b_i_sp',
1143
+ '%b_i_spb',
1144
+ '%b_i_st',
1145
+ '%b_iconvert',
1146
+ '%b_l_b',
1147
+ '%b_l_s',
1148
+ '%b_m_b',
1149
+ '%b_m_s',
1150
+ '%b_matrix',
1151
+ '%b_n_hm',
1152
+ '%b_o_hm',
1153
+ '%b_p_s',
1154
+ '%b_prod',
1155
+ '%b_r_b',
1156
+ '%b_r_s',
1157
+ '%b_s_b',
1158
+ '%b_s_s',
1159
+ '%b_string',
1160
+ '%b_sum',
1161
+ '%b_tril',
1162
+ '%b_triu',
1163
+ '%b_x_b',
1164
+ '%b_x_s',
1165
+ '%bicg',
1166
+ '%bicgstab',
1167
+ '%c_a_c',
1168
+ '%c_b_c',
1169
+ '%c_b_s',
1170
+ '%c_diag',
1171
+ '%c_dsearch',
1172
+ '%c_e',
1173
+ '%c_eye',
1174
+ '%c_f_s',
1175
+ '%c_grand',
1176
+ '%c_i_c',
1177
+ '%c_i_ce',
1178
+ '%c_i_h',
1179
+ '%c_i_hm',
1180
+ '%c_i_lss',
1181
+ '%c_i_r',
1182
+ '%c_i_s',
1183
+ '%c_i_st',
1184
+ '%c_matrix',
1185
+ '%c_n_l',
1186
+ '%c_n_st',
1187
+ '%c_o_l',
1188
+ '%c_o_st',
1189
+ '%c_ones',
1190
+ '%c_rand',
1191
+ '%c_tril',
1192
+ '%c_triu',
1193
+ '%cblock_c_cblock',
1194
+ '%cblock_c_s',
1195
+ '%cblock_e',
1196
+ '%cblock_f_cblock',
1197
+ '%cblock_p',
1198
+ '%cblock_size',
1199
+ '%ce_6',
1200
+ '%ce_c_ce',
1201
+ '%ce_e',
1202
+ '%ce_f_ce',
1203
+ '%ce_i_ce',
1204
+ '%ce_i_s',
1205
+ '%ce_i_st',
1206
+ '%ce_matrix',
1207
+ '%ce_p',
1208
+ '%ce_size',
1209
+ '%ce_string',
1210
+ '%ce_t',
1211
+ '%cgs',
1212
+ '%champdat_i_h',
1213
+ '%choose',
1214
+ '%diagram_xcos',
1215
+ '%dir_p',
1216
+ '%fptr_i_st',
1217
+ '%grand_perm',
1218
+ '%grayplot_i_h',
1219
+ '%h_i_st',
1220
+ '%hmS_k_hmS_generic',
1221
+ '%hm_1_hm',
1222
+ '%hm_1_s',
1223
+ '%hm_2_hm',
1224
+ '%hm_2_s',
1225
+ '%hm_3_hm',
1226
+ '%hm_3_s',
1227
+ '%hm_4_hm',
1228
+ '%hm_4_s',
1229
+ '%hm_5',
1230
+ '%hm_a_hm',
1231
+ '%hm_a_r',
1232
+ '%hm_a_s',
1233
+ '%hm_abs',
1234
+ '%hm_and',
1235
+ '%hm_bool2s',
1236
+ '%hm_c_hm',
1237
+ '%hm_ceil',
1238
+ '%hm_conj',
1239
+ '%hm_cos',
1240
+ '%hm_cumprod',
1241
+ '%hm_cumsum',
1242
+ '%hm_d_hm',
1243
+ '%hm_d_s',
1244
+ '%hm_degree',
1245
+ '%hm_dsearch',
1246
+ '%hm_e',
1247
+ '%hm_exp',
1248
+ '%hm_eye',
1249
+ '%hm_f_hm',
1250
+ '%hm_find',
1251
+ '%hm_floor',
1252
+ '%hm_g_hm',
1253
+ '%hm_grand',
1254
+ '%hm_gsort',
1255
+ '%hm_h_hm',
1256
+ '%hm_i_b',
1257
+ '%hm_i_ce',
1258
+ '%hm_i_h',
1259
+ '%hm_i_hm',
1260
+ '%hm_i_i',
1261
+ '%hm_i_p',
1262
+ '%hm_i_r',
1263
+ '%hm_i_s',
1264
+ '%hm_i_st',
1265
+ '%hm_iconvert',
1266
+ '%hm_imag',
1267
+ '%hm_int',
1268
+ '%hm_isnan',
1269
+ '%hm_isreal',
1270
+ '%hm_j_hm',
1271
+ '%hm_j_s',
1272
+ '%hm_k_hm',
1273
+ '%hm_k_s',
1274
+ '%hm_log',
1275
+ '%hm_m_p',
1276
+ '%hm_m_r',
1277
+ '%hm_m_s',
1278
+ '%hm_matrix',
1279
+ '%hm_max',
1280
+ '%hm_mean',
1281
+ '%hm_median',
1282
+ '%hm_min',
1283
+ '%hm_n_b',
1284
+ '%hm_n_c',
1285
+ '%hm_n_hm',
1286
+ '%hm_n_i',
1287
+ '%hm_n_p',
1288
+ '%hm_n_s',
1289
+ '%hm_o_b',
1290
+ '%hm_o_c',
1291
+ '%hm_o_hm',
1292
+ '%hm_o_i',
1293
+ '%hm_o_p',
1294
+ '%hm_o_s',
1295
+ '%hm_ones',
1296
+ '%hm_or',
1297
+ '%hm_p',
1298
+ '%hm_prod',
1299
+ '%hm_q_hm',
1300
+ '%hm_r_s',
1301
+ '%hm_rand',
1302
+ '%hm_real',
1303
+ '%hm_round',
1304
+ '%hm_s',
1305
+ '%hm_s_hm',
1306
+ '%hm_s_r',
1307
+ '%hm_s_s',
1308
+ '%hm_sign',
1309
+ '%hm_sin',
1310
+ '%hm_size',
1311
+ '%hm_sqrt',
1312
+ '%hm_stdev',
1313
+ '%hm_string',
1314
+ '%hm_sum',
1315
+ '%hm_x_hm',
1316
+ '%hm_x_p',
1317
+ '%hm_x_s',
1318
+ '%hm_zeros',
1319
+ '%i_1_s',
1320
+ '%i_2_s',
1321
+ '%i_3_s',
1322
+ '%i_4_s',
1323
+ '%i_Matplot',
1324
+ '%i_a_i',
1325
+ '%i_a_s',
1326
+ '%i_and',
1327
+ '%i_ascii',
1328
+ '%i_b_s',
1329
+ '%i_bezout',
1330
+ '%i_champ',
1331
+ '%i_champ1',
1332
+ '%i_contour',
1333
+ '%i_contour2d',
1334
+ '%i_d_i',
1335
+ '%i_d_s',
1336
+ '%i_dsearch',
1337
+ '%i_e',
1338
+ '%i_fft',
1339
+ '%i_g_i',
1340
+ '%i_gcd',
1341
+ '%i_grand',
1342
+ '%i_h_i',
1343
+ '%i_i_ce',
1344
+ '%i_i_h',
1345
+ '%i_i_hm',
1346
+ '%i_i_i',
1347
+ '%i_i_s',
1348
+ '%i_i_st',
1349
+ '%i_j_i',
1350
+ '%i_j_s',
1351
+ '%i_l_s',
1352
+ '%i_lcm',
1353
+ '%i_length',
1354
+ '%i_m_i',
1355
+ '%i_m_s',
1356
+ '%i_mfprintf',
1357
+ '%i_mprintf',
1358
+ '%i_msprintf',
1359
+ '%i_n_s',
1360
+ '%i_o_s',
1361
+ '%i_or',
1362
+ '%i_p_i',
1363
+ '%i_p_s',
1364
+ '%i_plot2d',
1365
+ '%i_plot2d1',
1366
+ '%i_plot2d2',
1367
+ '%i_q_s',
1368
+ '%i_r_i',
1369
+ '%i_r_s',
1370
+ '%i_round',
1371
+ '%i_s_i',
1372
+ '%i_s_s',
1373
+ '%i_sign',
1374
+ '%i_string',
1375
+ '%i_x_i',
1376
+ '%i_x_s',
1377
+ '%ip_a_s',
1378
+ '%ip_i_st',
1379
+ '%ip_m_s',
1380
+ '%ip_n_ip',
1381
+ '%ip_o_ip',
1382
+ '%ip_p',
1383
+ '%ip_part',
1384
+ '%ip_s_s',
1385
+ '%ip_string',
1386
+ '%k',
1387
+ '%l_i_h',
1388
+ '%l_i_s',
1389
+ '%l_i_st',
1390
+ '%l_isequal',
1391
+ '%l_n_c',
1392
+ '%l_n_l',
1393
+ '%l_n_m',
1394
+ '%l_n_p',
1395
+ '%l_n_s',
1396
+ '%l_n_st',
1397
+ '%l_o_c',
1398
+ '%l_o_l',
1399
+ '%l_o_m',
1400
+ '%l_o_p',
1401
+ '%l_o_s',
1402
+ '%l_o_st',
1403
+ '%lss_a_lss',
1404
+ '%lss_a_p',
1405
+ '%lss_a_r',
1406
+ '%lss_a_s',
1407
+ '%lss_c_lss',
1408
+ '%lss_c_p',
1409
+ '%lss_c_r',
1410
+ '%lss_c_s',
1411
+ '%lss_e',
1412
+ '%lss_eye',
1413
+ '%lss_f_lss',
1414
+ '%lss_f_p',
1415
+ '%lss_f_r',
1416
+ '%lss_f_s',
1417
+ '%lss_i_ce',
1418
+ '%lss_i_lss',
1419
+ '%lss_i_p',
1420
+ '%lss_i_r',
1421
+ '%lss_i_s',
1422
+ '%lss_i_st',
1423
+ '%lss_inv',
1424
+ '%lss_l_lss',
1425
+ '%lss_l_p',
1426
+ '%lss_l_r',
1427
+ '%lss_l_s',
1428
+ '%lss_m_lss',
1429
+ '%lss_m_p',
1430
+ '%lss_m_r',
1431
+ '%lss_m_s',
1432
+ '%lss_n_lss',
1433
+ '%lss_n_p',
1434
+ '%lss_n_r',
1435
+ '%lss_n_s',
1436
+ '%lss_norm',
1437
+ '%lss_o_lss',
1438
+ '%lss_o_p',
1439
+ '%lss_o_r',
1440
+ '%lss_o_s',
1441
+ '%lss_ones',
1442
+ '%lss_r_lss',
1443
+ '%lss_r_p',
1444
+ '%lss_r_r',
1445
+ '%lss_r_s',
1446
+ '%lss_rand',
1447
+ '%lss_s',
1448
+ '%lss_s_lss',
1449
+ '%lss_s_p',
1450
+ '%lss_s_r',
1451
+ '%lss_s_s',
1452
+ '%lss_size',
1453
+ '%lss_t',
1454
+ '%lss_v_lss',
1455
+ '%lss_v_p',
1456
+ '%lss_v_r',
1457
+ '%lss_v_s',
1458
+ '%lt_i_s',
1459
+ '%m_n_l',
1460
+ '%m_o_l',
1461
+ '%mc_i_h',
1462
+ '%mc_i_s',
1463
+ '%mc_i_st',
1464
+ '%mc_n_st',
1465
+ '%mc_o_st',
1466
+ '%mc_string',
1467
+ '%mps_p',
1468
+ '%mps_string',
1469
+ '%msp_a_s',
1470
+ '%msp_abs',
1471
+ '%msp_e',
1472
+ '%msp_find',
1473
+ '%msp_i_s',
1474
+ '%msp_i_st',
1475
+ '%msp_length',
1476
+ '%msp_m_s',
1477
+ '%msp_maxi',
1478
+ '%msp_n_msp',
1479
+ '%msp_nnz',
1480
+ '%msp_o_msp',
1481
+ '%msp_p',
1482
+ '%msp_sparse',
1483
+ '%msp_spones',
1484
+ '%msp_t',
1485
+ '%p_a_lss',
1486
+ '%p_a_r',
1487
+ '%p_c_lss',
1488
+ '%p_c_r',
1489
+ '%p_cumprod',
1490
+ '%p_cumsum',
1491
+ '%p_d_p',
1492
+ '%p_d_r',
1493
+ '%p_d_s',
1494
+ '%p_det',
1495
+ '%p_e',
1496
+ '%p_f_lss',
1497
+ '%p_f_r',
1498
+ '%p_grand',
1499
+ '%p_i_ce',
1500
+ '%p_i_h',
1501
+ '%p_i_hm',
1502
+ '%p_i_lss',
1503
+ '%p_i_p',
1504
+ '%p_i_r',
1505
+ '%p_i_s',
1506
+ '%p_i_st',
1507
+ '%p_inv',
1508
+ '%p_j_s',
1509
+ '%p_k_p',
1510
+ '%p_k_r',
1511
+ '%p_k_s',
1512
+ '%p_l_lss',
1513
+ '%p_l_p',
1514
+ '%p_l_r',
1515
+ '%p_l_s',
1516
+ '%p_m_hm',
1517
+ '%p_m_lss',
1518
+ '%p_m_r',
1519
+ '%p_matrix',
1520
+ '%p_n_l',
1521
+ '%p_n_lss',
1522
+ '%p_n_r',
1523
+ '%p_o_l',
1524
+ '%p_o_lss',
1525
+ '%p_o_r',
1526
+ '%p_o_sp',
1527
+ '%p_p_s',
1528
+ '%p_part',
1529
+ '%p_prod',
1530
+ '%p_q_p',
1531
+ '%p_q_r',
1532
+ '%p_q_s',
1533
+ '%p_r_lss',
1534
+ '%p_r_p',
1535
+ '%p_r_r',
1536
+ '%p_r_s',
1537
+ '%p_s_lss',
1538
+ '%p_s_r',
1539
+ '%p_simp',
1540
+ '%p_string',
1541
+ '%p_sum',
1542
+ '%p_v_lss',
1543
+ '%p_v_p',
1544
+ '%p_v_r',
1545
+ '%p_v_s',
1546
+ '%p_x_hm',
1547
+ '%p_x_r',
1548
+ '%p_y_p',
1549
+ '%p_y_r',
1550
+ '%p_y_s',
1551
+ '%p_z_p',
1552
+ '%p_z_r',
1553
+ '%p_z_s',
1554
+ '%pcg',
1555
+ '%plist_p',
1556
+ '%plist_string',
1557
+ '%r_0',
1558
+ '%r_a_hm',
1559
+ '%r_a_lss',
1560
+ '%r_a_p',
1561
+ '%r_a_r',
1562
+ '%r_a_s',
1563
+ '%r_c_lss',
1564
+ '%r_c_p',
1565
+ '%r_c_r',
1566
+ '%r_c_s',
1567
+ '%r_clean',
1568
+ '%r_cumprod',
1569
+ '%r_cumsum',
1570
+ '%r_d_p',
1571
+ '%r_d_r',
1572
+ '%r_d_s',
1573
+ '%r_det',
1574
+ '%r_diag',
1575
+ '%r_e',
1576
+ '%r_eye',
1577
+ '%r_f_lss',
1578
+ '%r_f_p',
1579
+ '%r_f_r',
1580
+ '%r_f_s',
1581
+ '%r_i_ce',
1582
+ '%r_i_hm',
1583
+ '%r_i_lss',
1584
+ '%r_i_p',
1585
+ '%r_i_r',
1586
+ '%r_i_s',
1587
+ '%r_i_st',
1588
+ '%r_inv',
1589
+ '%r_j_s',
1590
+ '%r_k_p',
1591
+ '%r_k_r',
1592
+ '%r_k_s',
1593
+ '%r_l_lss',
1594
+ '%r_l_p',
1595
+ '%r_l_r',
1596
+ '%r_l_s',
1597
+ '%r_m_hm',
1598
+ '%r_m_lss',
1599
+ '%r_m_p',
1600
+ '%r_m_r',
1601
+ '%r_m_s',
1602
+ '%r_matrix',
1603
+ '%r_n_lss',
1604
+ '%r_n_p',
1605
+ '%r_n_r',
1606
+ '%r_n_s',
1607
+ '%r_norm',
1608
+ '%r_o_lss',
1609
+ '%r_o_p',
1610
+ '%r_o_r',
1611
+ '%r_o_s',
1612
+ '%r_ones',
1613
+ '%r_p',
1614
+ '%r_p_s',
1615
+ '%r_prod',
1616
+ '%r_q_p',
1617
+ '%r_q_r',
1618
+ '%r_q_s',
1619
+ '%r_r_lss',
1620
+ '%r_r_p',
1621
+ '%r_r_r',
1622
+ '%r_r_s',
1623
+ '%r_rand',
1624
+ '%r_s',
1625
+ '%r_s_hm',
1626
+ '%r_s_lss',
1627
+ '%r_s_p',
1628
+ '%r_s_r',
1629
+ '%r_s_s',
1630
+ '%r_simp',
1631
+ '%r_size',
1632
+ '%r_string',
1633
+ '%r_sum',
1634
+ '%r_t',
1635
+ '%r_tril',
1636
+ '%r_triu',
1637
+ '%r_v_lss',
1638
+ '%r_v_p',
1639
+ '%r_v_r',
1640
+ '%r_v_s',
1641
+ '%r_varn',
1642
+ '%r_x_p',
1643
+ '%r_x_r',
1644
+ '%r_x_s',
1645
+ '%r_y_p',
1646
+ '%r_y_r',
1647
+ '%r_y_s',
1648
+ '%r_z_p',
1649
+ '%r_z_r',
1650
+ '%r_z_s',
1651
+ '%s_1_hm',
1652
+ '%s_1_i',
1653
+ '%s_2_hm',
1654
+ '%s_2_i',
1655
+ '%s_3_hm',
1656
+ '%s_3_i',
1657
+ '%s_4_hm',
1658
+ '%s_4_i',
1659
+ '%s_5',
1660
+ '%s_a_b',
1661
+ '%s_a_hm',
1662
+ '%s_a_i',
1663
+ '%s_a_ip',
1664
+ '%s_a_lss',
1665
+ '%s_a_msp',
1666
+ '%s_a_r',
1667
+ '%s_a_sp',
1668
+ '%s_and',
1669
+ '%s_b_i',
1670
+ '%s_b_s',
1671
+ '%s_bezout',
1672
+ '%s_c_b',
1673
+ '%s_c_cblock',
1674
+ '%s_c_lss',
1675
+ '%s_c_r',
1676
+ '%s_c_sp',
1677
+ '%s_d_b',
1678
+ '%s_d_i',
1679
+ '%s_d_p',
1680
+ '%s_d_r',
1681
+ '%s_d_sp',
1682
+ '%s_e',
1683
+ '%s_f_b',
1684
+ '%s_f_cblock',
1685
+ '%s_f_lss',
1686
+ '%s_f_r',
1687
+ '%s_f_sp',
1688
+ '%s_g_b',
1689
+ '%s_g_s',
1690
+ '%s_gcd',
1691
+ '%s_grand',
1692
+ '%s_h_b',
1693
+ '%s_h_s',
1694
+ '%s_i_b',
1695
+ '%s_i_c',
1696
+ '%s_i_ce',
1697
+ '%s_i_h',
1698
+ '%s_i_hm',
1699
+ '%s_i_i',
1700
+ '%s_i_lss',
1701
+ '%s_i_p',
1702
+ '%s_i_r',
1703
+ '%s_i_s',
1704
+ '%s_i_sp',
1705
+ '%s_i_spb',
1706
+ '%s_i_st',
1707
+ '%s_j_i',
1708
+ '%s_k_hm',
1709
+ '%s_k_p',
1710
+ '%s_k_r',
1711
+ '%s_k_sp',
1712
+ '%s_l_b',
1713
+ '%s_l_hm',
1714
+ '%s_l_i',
1715
+ '%s_l_lss',
1716
+ '%s_l_p',
1717
+ '%s_l_r',
1718
+ '%s_l_s',
1719
+ '%s_l_sp',
1720
+ '%s_lcm',
1721
+ '%s_m_b',
1722
+ '%s_m_hm',
1723
+ '%s_m_i',
1724
+ '%s_m_ip',
1725
+ '%s_m_lss',
1726
+ '%s_m_msp',
1727
+ '%s_m_r',
1728
+ '%s_matrix',
1729
+ '%s_n_hm',
1730
+ '%s_n_i',
1731
+ '%s_n_l',
1732
+ '%s_n_lss',
1733
+ '%s_n_r',
1734
+ '%s_n_st',
1735
+ '%s_o_hm',
1736
+ '%s_o_i',
1737
+ '%s_o_l',
1738
+ '%s_o_lss',
1739
+ '%s_o_r',
1740
+ '%s_o_st',
1741
+ '%s_or',
1742
+ '%s_p_b',
1743
+ '%s_p_i',
1744
+ '%s_pow',
1745
+ '%s_q_hm',
1746
+ '%s_q_i',
1747
+ '%s_q_p',
1748
+ '%s_q_r',
1749
+ '%s_q_sp',
1750
+ '%s_r_b',
1751
+ '%s_r_i',
1752
+ '%s_r_lss',
1753
+ '%s_r_p',
1754
+ '%s_r_r',
1755
+ '%s_r_s',
1756
+ '%s_r_sp',
1757
+ '%s_s_b',
1758
+ '%s_s_hm',
1759
+ '%s_s_i',
1760
+ '%s_s_ip',
1761
+ '%s_s_lss',
1762
+ '%s_s_r',
1763
+ '%s_s_sp',
1764
+ '%s_simp',
1765
+ '%s_v_lss',
1766
+ '%s_v_p',
1767
+ '%s_v_r',
1768
+ '%s_v_s',
1769
+ '%s_x_b',
1770
+ '%s_x_hm',
1771
+ '%s_x_i',
1772
+ '%s_x_r',
1773
+ '%s_y_p',
1774
+ '%s_y_r',
1775
+ '%s_y_sp',
1776
+ '%s_z_p',
1777
+ '%s_z_r',
1778
+ '%s_z_sp',
1779
+ '%sn',
1780
+ '%sp_a_s',
1781
+ '%sp_a_sp',
1782
+ '%sp_and',
1783
+ '%sp_c_s',
1784
+ '%sp_ceil',
1785
+ '%sp_conj',
1786
+ '%sp_cos',
1787
+ '%sp_cumprod',
1788
+ '%sp_cumsum',
1789
+ '%sp_d_s',
1790
+ '%sp_d_sp',
1791
+ '%sp_det',
1792
+ '%sp_diag',
1793
+ '%sp_e',
1794
+ '%sp_exp',
1795
+ '%sp_f_s',
1796
+ '%sp_floor',
1797
+ '%sp_grand',
1798
+ '%sp_gsort',
1799
+ '%sp_i_ce',
1800
+ '%sp_i_h',
1801
+ '%sp_i_s',
1802
+ '%sp_i_sp',
1803
+ '%sp_i_st',
1804
+ '%sp_int',
1805
+ '%sp_inv',
1806
+ '%sp_k_s',
1807
+ '%sp_k_sp',
1808
+ '%sp_l_s',
1809
+ '%sp_l_sp',
1810
+ '%sp_length',
1811
+ '%sp_max',
1812
+ '%sp_min',
1813
+ '%sp_norm',
1814
+ '%sp_or',
1815
+ '%sp_p_s',
1816
+ '%sp_prod',
1817
+ '%sp_q_s',
1818
+ '%sp_q_sp',
1819
+ '%sp_r_s',
1820
+ '%sp_r_sp',
1821
+ '%sp_round',
1822
+ '%sp_s_s',
1823
+ '%sp_s_sp',
1824
+ '%sp_sin',
1825
+ '%sp_sqrt',
1826
+ '%sp_string',
1827
+ '%sp_sum',
1828
+ '%sp_tril',
1829
+ '%sp_triu',
1830
+ '%sp_y_s',
1831
+ '%sp_y_sp',
1832
+ '%sp_z_s',
1833
+ '%sp_z_sp',
1834
+ '%spb_and',
1835
+ '%spb_c_b',
1836
+ '%spb_cumprod',
1837
+ '%spb_cumsum',
1838
+ '%spb_diag',
1839
+ '%spb_e',
1840
+ '%spb_f_b',
1841
+ '%spb_g_b',
1842
+ '%spb_g_spb',
1843
+ '%spb_h_b',
1844
+ '%spb_h_spb',
1845
+ '%spb_i_b',
1846
+ '%spb_i_ce',
1847
+ '%spb_i_h',
1848
+ '%spb_i_st',
1849
+ '%spb_or',
1850
+ '%spb_prod',
1851
+ '%spb_sum',
1852
+ '%spb_tril',
1853
+ '%spb_triu',
1854
+ '%st_6',
1855
+ '%st_c_st',
1856
+ '%st_e',
1857
+ '%st_f_st',
1858
+ '%st_i_b',
1859
+ '%st_i_c',
1860
+ '%st_i_fptr',
1861
+ '%st_i_h',
1862
+ '%st_i_i',
1863
+ '%st_i_ip',
1864
+ '%st_i_lss',
1865
+ '%st_i_msp',
1866
+ '%st_i_p',
1867
+ '%st_i_r',
1868
+ '%st_i_s',
1869
+ '%st_i_sp',
1870
+ '%st_i_spb',
1871
+ '%st_i_st',
1872
+ '%st_matrix',
1873
+ '%st_n_c',
1874
+ '%st_n_l',
1875
+ '%st_n_mc',
1876
+ '%st_n_p',
1877
+ '%st_n_s',
1878
+ '%st_o_c',
1879
+ '%st_o_l',
1880
+ '%st_o_mc',
1881
+ '%st_o_p',
1882
+ '%st_o_s',
1883
+ '%st_o_tl',
1884
+ '%st_p',
1885
+ '%st_size',
1886
+ '%st_string',
1887
+ '%st_t',
1888
+ '%ticks_i_h',
1889
+ '%xls_e',
1890
+ '%xls_p',
1891
+ '%xlssheet_e',
1892
+ '%xlssheet_p',
1893
+ '%xlssheet_size',
1894
+ '%xlssheet_string',
1895
+ 'DominationRank',
1896
+ 'G_make',
1897
+ 'IsAScalar',
1898
+ 'NDcost',
1899
+ 'OS_Version',
1900
+ 'PlotSparse',
1901
+ 'ReadHBSparse',
1902
+ 'TCL_CreateSlave',
1903
+ 'abcd',
1904
+ 'abinv',
1905
+ 'accept_func_default',
1906
+ 'accept_func_vfsa',
1907
+ 'acf',
1908
+ 'acosd',
1909
+ 'acosh',
1910
+ 'acoshm',
1911
+ 'acosm',
1912
+ 'acot',
1913
+ 'acotd',
1914
+ 'acoth',
1915
+ 'acsc',
1916
+ 'acscd',
1917
+ 'acsch',
1918
+ 'add_demo',
1919
+ 'add_help_chapter',
1920
+ 'add_module_help_chapter',
1921
+ 'add_param',
1922
+ 'add_profiling',
1923
+ 'adj2sp',
1924
+ 'aff2ab',
1925
+ 'ana_style',
1926
+ 'analpf',
1927
+ 'analyze',
1928
+ 'aplat',
1929
+ 'arhnk',
1930
+ 'arl2',
1931
+ 'arma2p',
1932
+ 'arma2ss',
1933
+ 'armac',
1934
+ 'armax',
1935
+ 'armax1',
1936
+ 'arobasestring2strings',
1937
+ 'arsimul',
1938
+ 'ascii2string',
1939
+ 'asciimat',
1940
+ 'asec',
1941
+ 'asecd',
1942
+ 'asech',
1943
+ 'asind',
1944
+ 'asinh',
1945
+ 'asinhm',
1946
+ 'asinm',
1947
+ 'assert_checkalmostequal',
1948
+ 'assert_checkequal',
1949
+ 'assert_checkerror',
1950
+ 'assert_checkfalse',
1951
+ 'assert_checkfilesequal',
1952
+ 'assert_checktrue',
1953
+ 'assert_comparecomplex',
1954
+ 'assert_computedigits',
1955
+ 'assert_cond2reltol',
1956
+ 'assert_cond2reqdigits',
1957
+ 'assert_generror',
1958
+ 'atand',
1959
+ 'atanh',
1960
+ 'atanhm',
1961
+ 'atanm',
1962
+ 'atomsAutoload',
1963
+ 'atomsAutoloadAdd',
1964
+ 'atomsAutoloadDel',
1965
+ 'atomsAutoloadList',
1966
+ 'atomsCategoryList',
1967
+ 'atomsCheckModule',
1968
+ 'atomsDepTreeShow',
1969
+ 'atomsGetConfig',
1970
+ 'atomsGetInstalled',
1971
+ 'atomsGetInstalledPath',
1972
+ 'atomsGetLoaded',
1973
+ 'atomsGetLoadedPath',
1974
+ 'atomsInstall',
1975
+ 'atomsIsInstalled',
1976
+ 'atomsIsLoaded',
1977
+ 'atomsList',
1978
+ 'atomsLoad',
1979
+ 'atomsQuit',
1980
+ 'atomsRemove',
1981
+ 'atomsRepositoryAdd',
1982
+ 'atomsRepositoryDel',
1983
+ 'atomsRepositoryList',
1984
+ 'atomsRestoreConfig',
1985
+ 'atomsSaveConfig',
1986
+ 'atomsSearch',
1987
+ 'atomsSetConfig',
1988
+ 'atomsShow',
1989
+ 'atomsSystemInit',
1990
+ 'atomsSystemUpdate',
1991
+ 'atomsTest',
1992
+ 'atomsUpdate',
1993
+ 'atomsVersion',
1994
+ 'augment',
1995
+ 'auread',
1996
+ 'auwrite',
1997
+ 'balreal',
1998
+ 'bench_run',
1999
+ 'bilin',
2000
+ 'bilt',
2001
+ 'bin2dec',
2002
+ 'binomial',
2003
+ 'bitand',
2004
+ 'bitcmp',
2005
+ 'bitget',
2006
+ 'bitor',
2007
+ 'bitset',
2008
+ 'bitxor',
2009
+ 'black',
2010
+ 'blanks',
2011
+ 'bloc2exp',
2012
+ 'bloc2ss',
2013
+ 'block_parameter_error',
2014
+ 'bode',
2015
+ 'bode_asymp',
2016
+ 'bstap',
2017
+ 'buttmag',
2018
+ 'bvodeS',
2019
+ 'bytecode',
2020
+ 'bytecodewalk',
2021
+ 'cainv',
2022
+ 'calendar',
2023
+ 'calerf',
2024
+ 'calfrq',
2025
+ 'canon',
2026
+ 'casc',
2027
+ 'cat',
2028
+ 'cat_code',
2029
+ 'cb_m2sci_gui',
2030
+ 'ccontrg',
2031
+ 'cell',
2032
+ 'cell2mat',
2033
+ 'cellstr',
2034
+ 'center',
2035
+ 'cepstrum',
2036
+ 'cfspec',
2037
+ 'char',
2038
+ 'chart',
2039
+ 'cheb1mag',
2040
+ 'cheb2mag',
2041
+ 'check_gateways',
2042
+ 'check_modules_xml',
2043
+ 'check_versions',
2044
+ 'chepol',
2045
+ 'chfact',
2046
+ 'chsolve',
2047
+ 'classmarkov',
2048
+ 'clean_help',
2049
+ 'clock',
2050
+ 'cls2dls',
2051
+ 'cmb_lin',
2052
+ 'cmndred',
2053
+ 'cmoment',
2054
+ 'coding_ga_binary',
2055
+ 'coding_ga_identity',
2056
+ 'coff',
2057
+ 'coffg',
2058
+ 'colcomp',
2059
+ 'colcompr',
2060
+ 'colinout',
2061
+ 'colregul',
2062
+ 'companion',
2063
+ 'complex',
2064
+ 'compute_initial_temp',
2065
+ 'cond',
2066
+ 'cond2sp',
2067
+ 'condestsp',
2068
+ 'configure_msifort',
2069
+ 'configure_msvc',
2070
+ 'conjgrad',
2071
+ 'cont_frm',
2072
+ 'cont_mat',
2073
+ 'contrss',
2074
+ 'conv',
2075
+ 'convert_to_float',
2076
+ 'convertindex',
2077
+ 'convol',
2078
+ 'convol2d',
2079
+ 'copfac',
2080
+ 'correl',
2081
+ 'cosd',
2082
+ 'cosh',
2083
+ 'coshm',
2084
+ 'cosm',
2085
+ 'cotd',
2086
+ 'cotg',
2087
+ 'coth',
2088
+ 'cothm',
2089
+ 'cov',
2090
+ 'covar',
2091
+ 'createXConfiguration',
2092
+ 'createfun',
2093
+ 'createstruct',
2094
+ 'cross',
2095
+ 'crossover_ga_binary',
2096
+ 'crossover_ga_default',
2097
+ 'csc',
2098
+ 'cscd',
2099
+ 'csch',
2100
+ 'csgn',
2101
+ 'csim',
2102
+ 'cspect',
2103
+ 'ctr_gram',
2104
+ 'czt',
2105
+ 'dae',
2106
+ 'daeoptions',
2107
+ 'damp',
2108
+ 'datafit',
2109
+ 'date',
2110
+ 'datenum',
2111
+ 'datevec',
2112
+ 'dbphi',
2113
+ 'dcf',
2114
+ 'ddp',
2115
+ 'dec2bin',
2116
+ 'dec2hex',
2117
+ 'dec2oct',
2118
+ 'del_help_chapter',
2119
+ 'del_module_help_chapter',
2120
+ 'demo_begin',
2121
+ 'demo_choose',
2122
+ 'demo_compiler',
2123
+ 'demo_end',
2124
+ 'demo_file_choice',
2125
+ 'demo_folder_choice',
2126
+ 'demo_function_choice',
2127
+ 'demo_gui',
2128
+ 'demo_run',
2129
+ 'demo_viewCode',
2130
+ 'denom',
2131
+ 'derivat',
2132
+ 'derivative',
2133
+ 'des2ss',
2134
+ 'des2tf',
2135
+ 'detectmsifort64tools',
2136
+ 'detectmsvc64tools',
2137
+ 'determ',
2138
+ 'detr',
2139
+ 'detrend',
2140
+ 'devtools_run_builder',
2141
+ 'dhnorm',
2142
+ 'diff',
2143
+ 'diophant',
2144
+ 'dir',
2145
+ 'dirname',
2146
+ 'dispfiles',
2147
+ 'dllinfo',
2148
+ 'dscr',
2149
+ 'dsimul',
2150
+ 'dt_ility',
2151
+ 'dtsi',
2152
+ 'edit',
2153
+ 'edit_error',
2154
+ 'editor',
2155
+ 'eigenmarkov',
2156
+ 'eigs',
2157
+ 'ell1mag',
2158
+ 'enlarge_shape',
2159
+ 'entropy',
2160
+ 'eomday',
2161
+ 'epred',
2162
+ 'eqfir',
2163
+ 'eqiir',
2164
+ 'equil',
2165
+ 'equil1',
2166
+ 'erfinv',
2167
+ 'etime',
2168
+ 'eval',
2169
+ 'evans',
2170
+ 'evstr',
2171
+ 'example_run',
2172
+ 'expression2code',
2173
+ 'extract_help_examples',
2174
+ 'factor',
2175
+ 'factorial',
2176
+ 'factors',
2177
+ 'faurre',
2178
+ 'ffilt',
2179
+ 'fft2',
2180
+ 'fftshift',
2181
+ 'fieldnames',
2182
+ 'filt_sinc',
2183
+ 'filter',
2184
+ 'findABCD',
2185
+ 'findAC',
2186
+ 'findBDK',
2187
+ 'findR',
2188
+ 'find_freq',
2189
+ 'find_links',
2190
+ 'find_scicos_version',
2191
+ 'findm',
2192
+ 'findmsifortcompiler',
2193
+ 'findmsvccompiler',
2194
+ 'findx0BD',
2195
+ 'firstnonsingleton',
2196
+ 'fix',
2197
+ 'fixedpointgcd',
2198
+ 'flipdim',
2199
+ 'flts',
2200
+ 'fminsearch',
2201
+ 'formatBlackTip',
2202
+ 'formatBodeMagTip',
2203
+ 'formatBodePhaseTip',
2204
+ 'formatGainplotTip',
2205
+ 'formatHallModuleTip',
2206
+ 'formatHallPhaseTip',
2207
+ 'formatNicholsGainTip',
2208
+ 'formatNicholsPhaseTip',
2209
+ 'formatNyquistTip',
2210
+ 'formatPhaseplotTip',
2211
+ 'formatSgridDampingTip',
2212
+ 'formatSgridFreqTip',
2213
+ 'formatZgridDampingTip',
2214
+ 'formatZgridFreqTip',
2215
+ 'format_txt',
2216
+ 'fourplan',
2217
+ 'frep2tf',
2218
+ 'freson',
2219
+ 'frfit',
2220
+ 'frmag',
2221
+ 'fseek_origin',
2222
+ 'fsfirlin',
2223
+ 'fspec',
2224
+ 'fspecg',
2225
+ 'fstabst',
2226
+ 'ftest',
2227
+ 'ftuneq',
2228
+ 'fullfile',
2229
+ 'fullrf',
2230
+ 'fullrfk',
2231
+ 'fun2string',
2232
+ 'g_margin',
2233
+ 'gainplot',
2234
+ 'gamitg',
2235
+ 'gcare',
2236
+ 'gcd',
2237
+ 'gencompilationflags_unix',
2238
+ 'generateBlockImage',
2239
+ 'generateBlockImages',
2240
+ 'generic_i_ce',
2241
+ 'generic_i_h',
2242
+ 'generic_i_hm',
2243
+ 'generic_i_s',
2244
+ 'generic_i_st',
2245
+ 'genlib',
2246
+ 'genmarkov',
2247
+ 'geomean',
2248
+ 'getDiagramVersion',
2249
+ 'getModelicaPath',
2250
+ 'getPreferencesValue',
2251
+ 'get_file_path',
2252
+ 'get_function_path',
2253
+ 'get_param',
2254
+ 'get_profile',
2255
+ 'get_scicos_version',
2256
+ 'getd',
2257
+ 'getscilabkeywords',
2258
+ 'getshell',
2259
+ 'gettklib',
2260
+ 'gfare',
2261
+ 'gfrancis',
2262
+ 'givens',
2263
+ 'glever',
2264
+ 'gmres',
2265
+ 'group',
2266
+ 'gschur',
2267
+ 'gspec',
2268
+ 'gtild',
2269
+ 'h2norm',
2270
+ 'h_cl',
2271
+ 'h_inf',
2272
+ 'h_inf_st',
2273
+ 'h_norm',
2274
+ 'hallchart',
2275
+ 'halt',
2276
+ 'hank',
2277
+ 'hankelsv',
2278
+ 'harmean',
2279
+ 'haveacompiler',
2280
+ 'head_comments',
2281
+ 'help_from_sci',
2282
+ 'help_skeleton',
2283
+ 'hermit',
2284
+ 'hex2dec',
2285
+ 'hilb',
2286
+ 'hilbert',
2287
+ 'histc',
2288
+ 'horner',
2289
+ 'householder',
2290
+ 'hrmt',
2291
+ 'htrianr',
2292
+ 'hypermat',
2293
+ 'idct',
2294
+ 'idst',
2295
+ 'ifft',
2296
+ 'ifftshift',
2297
+ 'iir',
2298
+ 'iirgroup',
2299
+ 'iirlp',
2300
+ 'iirmod',
2301
+ 'ilib_build',
2302
+ 'ilib_build_jar',
2303
+ 'ilib_compile',
2304
+ 'ilib_for_link',
2305
+ 'ilib_gen_Make',
2306
+ 'ilib_gen_Make_unix',
2307
+ 'ilib_gen_cleaner',
2308
+ 'ilib_gen_gateway',
2309
+ 'ilib_gen_loader',
2310
+ 'ilib_include_flag',
2311
+ 'ilib_mex_build',
2312
+ 'im_inv',
2313
+ 'importScicosDiagram',
2314
+ 'importScicosPal',
2315
+ 'importXcosDiagram',
2316
+ 'imrep2ss',
2317
+ 'ind2sub',
2318
+ 'inistate',
2319
+ 'init_ga_default',
2320
+ 'init_param',
2321
+ 'initial_scicos_tables',
2322
+ 'input',
2323
+ 'instruction2code',
2324
+ 'intc',
2325
+ 'intdec',
2326
+ 'integrate',
2327
+ 'interp1',
2328
+ 'interpln',
2329
+ 'intersect',
2330
+ 'intl',
2331
+ 'intsplin',
2332
+ 'inttrap',
2333
+ 'inv_coeff',
2334
+ 'invr',
2335
+ 'invrs',
2336
+ 'invsyslin',
2337
+ 'iqr',
2338
+ 'isLeapYear',
2339
+ 'is_absolute_path',
2340
+ 'is_param',
2341
+ 'iscell',
2342
+ 'iscellstr',
2343
+ 'iscolumn',
2344
+ 'isempty',
2345
+ 'isfield',
2346
+ 'isinf',
2347
+ 'ismatrix',
2348
+ 'isnan',
2349
+ 'isrow',
2350
+ 'isscalar',
2351
+ 'issparse',
2352
+ 'issquare',
2353
+ 'isstruct',
2354
+ 'isvector',
2355
+ 'jmat',
2356
+ 'justify',
2357
+ 'kalm',
2358
+ 'karmarkar',
2359
+ 'kernel',
2360
+ 'kpure',
2361
+ 'krac2',
2362
+ 'kroneck',
2363
+ 'lattn',
2364
+ 'lattp',
2365
+ 'launchtest',
2366
+ 'lcf',
2367
+ 'lcm',
2368
+ 'lcmdiag',
2369
+ 'leastsq',
2370
+ 'leqe',
2371
+ 'leqr',
2372
+ 'lev',
2373
+ 'levin',
2374
+ 'lex_sort',
2375
+ 'lft',
2376
+ 'lin',
2377
+ 'lin2mu',
2378
+ 'lincos',
2379
+ 'lindquist',
2380
+ 'linf',
2381
+ 'linfn',
2382
+ 'linsolve',
2383
+ 'linspace',
2384
+ 'list2vec',
2385
+ 'list_param',
2386
+ 'listfiles',
2387
+ 'listfunctions',
2388
+ 'listvarinfile',
2389
+ 'lmisolver',
2390
+ 'lmitool',
2391
+ 'loadXcosLibs',
2392
+ 'loadmatfile',
2393
+ 'loadwave',
2394
+ 'log10',
2395
+ 'log2',
2396
+ 'logm',
2397
+ 'logspace',
2398
+ 'lqe',
2399
+ 'lqg',
2400
+ 'lqg2stan',
2401
+ 'lqg_ltr',
2402
+ 'lqr',
2403
+ 'ls',
2404
+ 'lyap',
2405
+ 'm2sci_gui',
2406
+ 'm_circle',
2407
+ 'macglov',
2408
+ 'macrovar',
2409
+ 'mad',
2410
+ 'makecell',
2411
+ 'manedit',
2412
+ 'mapsound',
2413
+ 'markp2ss',
2414
+ 'matfile2sci',
2415
+ 'mdelete',
2416
+ 'mean',
2417
+ 'meanf',
2418
+ 'median',
2419
+ 'members',
2420
+ 'mese',
2421
+ 'meshgrid',
2422
+ 'mfft',
2423
+ 'mfile2sci',
2424
+ 'minreal',
2425
+ 'minss',
2426
+ 'mkdir',
2427
+ 'modulo',
2428
+ 'moment',
2429
+ 'mrfit',
2430
+ 'msd',
2431
+ 'mstr2sci',
2432
+ 'mtlb',
2433
+ 'mtlb_0',
2434
+ 'mtlb_a',
2435
+ 'mtlb_all',
2436
+ 'mtlb_any',
2437
+ 'mtlb_axes',
2438
+ 'mtlb_axis',
2439
+ 'mtlb_beta',
2440
+ 'mtlb_box',
2441
+ 'mtlb_choices',
2442
+ 'mtlb_close',
2443
+ 'mtlb_colordef',
2444
+ 'mtlb_cond',
2445
+ 'mtlb_cov',
2446
+ 'mtlb_cumprod',
2447
+ 'mtlb_cumsum',
2448
+ 'mtlb_dec2hex',
2449
+ 'mtlb_delete',
2450
+ 'mtlb_diag',
2451
+ 'mtlb_diff',
2452
+ 'mtlb_dir',
2453
+ 'mtlb_double',
2454
+ 'mtlb_e',
2455
+ 'mtlb_echo',
2456
+ 'mtlb_error',
2457
+ 'mtlb_eval',
2458
+ 'mtlb_exist',
2459
+ 'mtlb_eye',
2460
+ 'mtlb_false',
2461
+ 'mtlb_fft',
2462
+ 'mtlb_fftshift',
2463
+ 'mtlb_filter',
2464
+ 'mtlb_find',
2465
+ 'mtlb_findstr',
2466
+ 'mtlb_fliplr',
2467
+ 'mtlb_fopen',
2468
+ 'mtlb_format',
2469
+ 'mtlb_fprintf',
2470
+ 'mtlb_fread',
2471
+ 'mtlb_fscanf',
2472
+ 'mtlb_full',
2473
+ 'mtlb_fwrite',
2474
+ 'mtlb_get',
2475
+ 'mtlb_grid',
2476
+ 'mtlb_hold',
2477
+ 'mtlb_i',
2478
+ 'mtlb_ifft',
2479
+ 'mtlb_image',
2480
+ 'mtlb_imp',
2481
+ 'mtlb_int16',
2482
+ 'mtlb_int32',
2483
+ 'mtlb_int8',
2484
+ 'mtlb_is',
2485
+ 'mtlb_isa',
2486
+ 'mtlb_isfield',
2487
+ 'mtlb_isletter',
2488
+ 'mtlb_isspace',
2489
+ 'mtlb_l',
2490
+ 'mtlb_legendre',
2491
+ 'mtlb_linspace',
2492
+ 'mtlb_logic',
2493
+ 'mtlb_logical',
2494
+ 'mtlb_loglog',
2495
+ 'mtlb_lower',
2496
+ 'mtlb_max',
2497
+ 'mtlb_mean',
2498
+ 'mtlb_median',
2499
+ 'mtlb_mesh',
2500
+ 'mtlb_meshdom',
2501
+ 'mtlb_min',
2502
+ 'mtlb_more',
2503
+ 'mtlb_num2str',
2504
+ 'mtlb_ones',
2505
+ 'mtlb_pcolor',
2506
+ 'mtlb_plot',
2507
+ 'mtlb_prod',
2508
+ 'mtlb_qr',
2509
+ 'mtlb_qz',
2510
+ 'mtlb_rand',
2511
+ 'mtlb_randn',
2512
+ 'mtlb_rcond',
2513
+ 'mtlb_realmax',
2514
+ 'mtlb_realmin',
2515
+ 'mtlb_s',
2516
+ 'mtlb_semilogx',
2517
+ 'mtlb_semilogy',
2518
+ 'mtlb_setstr',
2519
+ 'mtlb_size',
2520
+ 'mtlb_sort',
2521
+ 'mtlb_sortrows',
2522
+ 'mtlb_sprintf',
2523
+ 'mtlb_sscanf',
2524
+ 'mtlb_std',
2525
+ 'mtlb_strcmp',
2526
+ 'mtlb_strcmpi',
2527
+ 'mtlb_strfind',
2528
+ 'mtlb_strrep',
2529
+ 'mtlb_subplot',
2530
+ 'mtlb_sum',
2531
+ 'mtlb_t',
2532
+ 'mtlb_toeplitz',
2533
+ 'mtlb_tril',
2534
+ 'mtlb_triu',
2535
+ 'mtlb_true',
2536
+ 'mtlb_type',
2537
+ 'mtlb_uint16',
2538
+ 'mtlb_uint32',
2539
+ 'mtlb_uint8',
2540
+ 'mtlb_upper',
2541
+ 'mtlb_var',
2542
+ 'mtlb_zeros',
2543
+ 'mu2lin',
2544
+ 'mutation_ga_binary',
2545
+ 'mutation_ga_default',
2546
+ 'mvcorrel',
2547
+ 'mvvacov',
2548
+ 'nancumsum',
2549
+ 'nand2mean',
2550
+ 'nanmax',
2551
+ 'nanmean',
2552
+ 'nanmeanf',
2553
+ 'nanmedian',
2554
+ 'nanmin',
2555
+ 'nanreglin',
2556
+ 'nanstdev',
2557
+ 'nansum',
2558
+ 'narsimul',
2559
+ 'ndgrid',
2560
+ 'ndims',
2561
+ 'nehari',
2562
+ 'neigh_func_csa',
2563
+ 'neigh_func_default',
2564
+ 'neigh_func_fsa',
2565
+ 'neigh_func_vfsa',
2566
+ 'neldermead_cget',
2567
+ 'neldermead_configure',
2568
+ 'neldermead_costf',
2569
+ 'neldermead_defaultoutput',
2570
+ 'neldermead_destroy',
2571
+ 'neldermead_function',
2572
+ 'neldermead_get',
2573
+ 'neldermead_log',
2574
+ 'neldermead_new',
2575
+ 'neldermead_restart',
2576
+ 'neldermead_search',
2577
+ 'neldermead_updatesimp',
2578
+ 'nextpow2',
2579
+ 'nfreq',
2580
+ 'nicholschart',
2581
+ 'nlev',
2582
+ 'nmplot_cget',
2583
+ 'nmplot_configure',
2584
+ 'nmplot_contour',
2585
+ 'nmplot_destroy',
2586
+ 'nmplot_function',
2587
+ 'nmplot_get',
2588
+ 'nmplot_historyplot',
2589
+ 'nmplot_log',
2590
+ 'nmplot_new',
2591
+ 'nmplot_outputcmd',
2592
+ 'nmplot_restart',
2593
+ 'nmplot_search',
2594
+ 'nmplot_simplexhistory',
2595
+ 'noisegen',
2596
+ 'nonreg_test_run',
2597
+ 'now',
2598
+ 'nthroot',
2599
+ 'null',
2600
+ 'num2cell',
2601
+ 'numderivative',
2602
+ 'numdiff',
2603
+ 'numer',
2604
+ 'nyquist',
2605
+ 'nyquistfrequencybounds',
2606
+ 'obs_gram',
2607
+ 'obscont',
2608
+ 'observer',
2609
+ 'obsv_mat',
2610
+ 'obsvss',
2611
+ 'oct2dec',
2612
+ 'odeoptions',
2613
+ 'optim_ga',
2614
+ 'optim_moga',
2615
+ 'optim_nsga',
2616
+ 'optim_nsga2',
2617
+ 'optim_sa',
2618
+ 'optimbase_cget',
2619
+ 'optimbase_checkbounds',
2620
+ 'optimbase_checkcostfun',
2621
+ 'optimbase_checkx0',
2622
+ 'optimbase_configure',
2623
+ 'optimbase_destroy',
2624
+ 'optimbase_function',
2625
+ 'optimbase_get',
2626
+ 'optimbase_hasbounds',
2627
+ 'optimbase_hasconstraints',
2628
+ 'optimbase_hasnlcons',
2629
+ 'optimbase_histget',
2630
+ 'optimbase_histset',
2631
+ 'optimbase_incriter',
2632
+ 'optimbase_isfeasible',
2633
+ 'optimbase_isinbounds',
2634
+ 'optimbase_isinnonlincons',
2635
+ 'optimbase_log',
2636
+ 'optimbase_logshutdown',
2637
+ 'optimbase_logstartup',
2638
+ 'optimbase_new',
2639
+ 'optimbase_outputcmd',
2640
+ 'optimbase_outstruct',
2641
+ 'optimbase_proj2bnds',
2642
+ 'optimbase_set',
2643
+ 'optimbase_stoplog',
2644
+ 'optimbase_terminate',
2645
+ 'optimget',
2646
+ 'optimplotfunccount',
2647
+ 'optimplotfval',
2648
+ 'optimplotx',
2649
+ 'optimset',
2650
+ 'optimsimplex_center',
2651
+ 'optimsimplex_check',
2652
+ 'optimsimplex_compsomefv',
2653
+ 'optimsimplex_computefv',
2654
+ 'optimsimplex_deltafv',
2655
+ 'optimsimplex_deltafvmax',
2656
+ 'optimsimplex_destroy',
2657
+ 'optimsimplex_dirmat',
2658
+ 'optimsimplex_fvmean',
2659
+ 'optimsimplex_fvstdev',
2660
+ 'optimsimplex_fvvariance',
2661
+ 'optimsimplex_getall',
2662
+ 'optimsimplex_getallfv',
2663
+ 'optimsimplex_getallx',
2664
+ 'optimsimplex_getfv',
2665
+ 'optimsimplex_getn',
2666
+ 'optimsimplex_getnbve',
2667
+ 'optimsimplex_getve',
2668
+ 'optimsimplex_getx',
2669
+ 'optimsimplex_gradientfv',
2670
+ 'optimsimplex_log',
2671
+ 'optimsimplex_new',
2672
+ 'optimsimplex_reflect',
2673
+ 'optimsimplex_setall',
2674
+ 'optimsimplex_setallfv',
2675
+ 'optimsimplex_setallx',
2676
+ 'optimsimplex_setfv',
2677
+ 'optimsimplex_setn',
2678
+ 'optimsimplex_setnbve',
2679
+ 'optimsimplex_setve',
2680
+ 'optimsimplex_setx',
2681
+ 'optimsimplex_shrink',
2682
+ 'optimsimplex_size',
2683
+ 'optimsimplex_sort',
2684
+ 'optimsimplex_xbar',
2685
+ 'orth',
2686
+ 'output_ga_default',
2687
+ 'output_moga_default',
2688
+ 'output_nsga2_default',
2689
+ 'output_nsga_default',
2690
+ 'p_margin',
2691
+ 'pack',
2692
+ 'pareto_filter',
2693
+ 'parrot',
2694
+ 'pbig',
2695
+ 'pca',
2696
+ 'pcg',
2697
+ 'pdiv',
2698
+ 'pen2ea',
2699
+ 'pencan',
2700
+ 'pencost',
2701
+ 'penlaur',
2702
+ 'perctl',
2703
+ 'perl',
2704
+ 'perms',
2705
+ 'permute',
2706
+ 'pertrans',
2707
+ 'pfactors',
2708
+ 'pfss',
2709
+ 'phasemag',
2710
+ 'phaseplot',
2711
+ 'phc',
2712
+ 'pinv',
2713
+ 'playsnd',
2714
+ 'plotprofile',
2715
+ 'plzr',
2716
+ 'pmodulo',
2717
+ 'pol2des',
2718
+ 'pol2str',
2719
+ 'polar',
2720
+ 'polfact',
2721
+ 'prbs_a',
2722
+ 'prettyprint',
2723
+ 'primes',
2724
+ 'princomp',
2725
+ 'profile',
2726
+ 'proj',
2727
+ 'projsl',
2728
+ 'projspec',
2729
+ 'psmall',
2730
+ 'pspect',
2731
+ 'qmr',
2732
+ 'qpsolve',
2733
+ 'quart',
2734
+ 'quaskro',
2735
+ 'rafiter',
2736
+ 'randpencil',
2737
+ 'range',
2738
+ 'rank',
2739
+ 'readxls',
2740
+ 'recompilefunction',
2741
+ 'recons',
2742
+ 'reglin',
2743
+ 'regress',
2744
+ 'remezb',
2745
+ 'remove_param',
2746
+ 'remove_profiling',
2747
+ 'repfreq',
2748
+ 'replace_Ix_by_Fx',
2749
+ 'repmat',
2750
+ 'reset_profiling',
2751
+ 'resize_matrix',
2752
+ 'returntoscilab',
2753
+ 'rhs2code',
2754
+ 'ric_desc',
2755
+ 'riccati',
2756
+ 'rmdir',
2757
+ 'routh_t',
2758
+ 'rowcomp',
2759
+ 'rowcompr',
2760
+ 'rowinout',
2761
+ 'rowregul',
2762
+ 'rowshuff',
2763
+ 'rref',
2764
+ 'sample',
2765
+ 'samplef',
2766
+ 'samwr',
2767
+ 'savematfile',
2768
+ 'savewave',
2769
+ 'scanf',
2770
+ 'sci2exp',
2771
+ 'sciGUI_init',
2772
+ 'sci_sparse',
2773
+ 'scicos_getvalue',
2774
+ 'scicos_simulate',
2775
+ 'scicos_workspace_init',
2776
+ 'scisptdemo',
2777
+ 'scitest',
2778
+ 'sdiff',
2779
+ 'sec',
2780
+ 'secd',
2781
+ 'sech',
2782
+ 'selection_ga_elitist',
2783
+ 'selection_ga_random',
2784
+ 'sensi',
2785
+ 'setPreferencesValue',
2786
+ 'set_param',
2787
+ 'setdiff',
2788
+ 'sgrid',
2789
+ 'show_margins',
2790
+ 'show_pca',
2791
+ 'showprofile',
2792
+ 'signm',
2793
+ 'sinc',
2794
+ 'sincd',
2795
+ 'sind',
2796
+ 'sinh',
2797
+ 'sinhm',
2798
+ 'sinm',
2799
+ 'sm2des',
2800
+ 'sm2ss',
2801
+ 'smga',
2802
+ 'smooth',
2803
+ 'solve',
2804
+ 'sound',
2805
+ 'soundsec',
2806
+ 'sp2adj',
2807
+ 'spaninter',
2808
+ 'spanplus',
2809
+ 'spantwo',
2810
+ 'specfact',
2811
+ 'speye',
2812
+ 'sprand',
2813
+ 'spzeros',
2814
+ 'sqroot',
2815
+ 'sqrtm',
2816
+ 'squarewave',
2817
+ 'squeeze',
2818
+ 'srfaur',
2819
+ 'srkf',
2820
+ 'ss2des',
2821
+ 'ss2ss',
2822
+ 'ss2tf',
2823
+ 'sskf',
2824
+ 'ssprint',
2825
+ 'ssrand',
2826
+ 'st_deviation',
2827
+ 'st_i_generic',
2828
+ 'st_ility',
2829
+ 'stabil',
2830
+ 'statgain',
2831
+ 'stdev',
2832
+ 'stdevf',
2833
+ 'steadycos',
2834
+ 'strange',
2835
+ 'strcmpi',
2836
+ 'struct',
2837
+ 'sub2ind',
2838
+ 'sva',
2839
+ 'svplot',
2840
+ 'sylm',
2841
+ 'sylv',
2842
+ 'sysconv',
2843
+ 'sysdiag',
2844
+ 'sysfact',
2845
+ 'syslin',
2846
+ 'syssize',
2847
+ 'system',
2848
+ 'systmat',
2849
+ 'tabul',
2850
+ 'tand',
2851
+ 'tanh',
2852
+ 'tanhm',
2853
+ 'tanm',
2854
+ 'tbx_build_blocks',
2855
+ 'tbx_build_cleaner',
2856
+ 'tbx_build_gateway',
2857
+ 'tbx_build_gateway_clean',
2858
+ 'tbx_build_gateway_loader',
2859
+ 'tbx_build_help',
2860
+ 'tbx_build_help_loader',
2861
+ 'tbx_build_loader',
2862
+ 'tbx_build_localization',
2863
+ 'tbx_build_macros',
2864
+ 'tbx_build_pal_loader',
2865
+ 'tbx_build_src',
2866
+ 'tbx_builder',
2867
+ 'tbx_builder_gateway',
2868
+ 'tbx_builder_gateway_lang',
2869
+ 'tbx_builder_help',
2870
+ 'tbx_builder_help_lang',
2871
+ 'tbx_builder_macros',
2872
+ 'tbx_builder_src',
2873
+ 'tbx_builder_src_lang',
2874
+ 'tbx_generate_pofile',
2875
+ 'temp_law_csa',
2876
+ 'temp_law_default',
2877
+ 'temp_law_fsa',
2878
+ 'temp_law_huang',
2879
+ 'temp_law_vfsa',
2880
+ 'test_clean',
2881
+ 'test_on_columns',
2882
+ 'test_run',
2883
+ 'test_run_level',
2884
+ 'testexamples',
2885
+ 'tf2des',
2886
+ 'tf2ss',
2887
+ 'thrownan',
2888
+ 'tic',
2889
+ 'time_id',
2890
+ 'toc',
2891
+ 'toeplitz',
2892
+ 'tokenpos',
2893
+ 'toolboxes',
2894
+ 'trace',
2895
+ 'trans',
2896
+ 'translatepaths',
2897
+ 'tree2code',
2898
+ 'trfmod',
2899
+ 'trianfml',
2900
+ 'trimmean',
2901
+ 'trisolve',
2902
+ 'trzeros',
2903
+ 'typeof',
2904
+ 'ui_observer',
2905
+ 'union',
2906
+ 'unique',
2907
+ 'unit_test_run',
2908
+ 'unix_g',
2909
+ 'unix_s',
2910
+ 'unix_w',
2911
+ 'unix_x',
2912
+ 'unobs',
2913
+ 'unpack',
2914
+ 'unwrap',
2915
+ 'variance',
2916
+ 'variancef',
2917
+ 'vec2list',
2918
+ 'vectorfind',
2919
+ 'ver',
2920
+ 'warnobsolete',
2921
+ 'wavread',
2922
+ 'wavwrite',
2923
+ 'wcenter',
2924
+ 'weekday',
2925
+ 'wfir',
2926
+ 'wfir_gui',
2927
+ 'whereami',
2928
+ 'who_user',
2929
+ 'whos',
2930
+ 'wiener',
2931
+ 'wigner',
2932
+ 'window',
2933
+ 'winlist',
2934
+ 'with_javasci',
2935
+ 'with_macros_source',
2936
+ 'with_modelica_compiler',
2937
+ 'with_tk',
2938
+ 'xcorr',
2939
+ 'xcosBlockEval',
2940
+ 'xcosBlockInterface',
2941
+ 'xcosCodeGeneration',
2942
+ 'xcosConfigureModelica',
2943
+ 'xcosPal',
2944
+ 'xcosPalAdd',
2945
+ 'xcosPalAddBlock',
2946
+ 'xcosPalExport',
2947
+ 'xcosPalGenerateAllIcons',
2948
+ 'xcosShowBlockWarning',
2949
+ 'xcosValidateBlockSet',
2950
+ 'xcosValidateCompareBlock',
2951
+ 'xcos_compile',
2952
+ 'xcos_debug_gui',
2953
+ 'xcos_run',
2954
+ 'xcos_simulate',
2955
+ 'xcov',
2956
+ 'xmltochm',
2957
+ 'xmltoformat',
2958
+ 'xmltohtml',
2959
+ 'xmltojar',
2960
+ 'xmltopdf',
2961
+ 'xmltops',
2962
+ 'xmltoweb',
2963
+ 'yulewalk',
2964
+ 'zeropen',
2965
+ 'zgrid',
2966
+ 'zpbutt',
2967
+ 'zpch1',
2968
+ 'zpch2',
2969
+ 'zpell',
2970
+ )
2971
+
2972
+ variables_kw = (
2973
+ '$',
2974
+ '%F',
2975
+ '%T',
2976
+ '%e',
2977
+ '%eps',
2978
+ '%f',
2979
+ '%fftw',
2980
+ '%gui',
2981
+ '%i',
2982
+ '%inf',
2983
+ '%io',
2984
+ '%modalWarning',
2985
+ '%nan',
2986
+ '%pi',
2987
+ '%s',
2988
+ '%t',
2989
+ '%tk',
2990
+ '%toolboxes',
2991
+ '%toolboxes_dir',
2992
+ '%z',
2993
+ 'PWD',
2994
+ 'SCI',
2995
+ 'SCIHOME',
2996
+ 'TMPDIR',
2997
+ 'arnoldilib',
2998
+ 'assertlib',
2999
+ 'atomslib',
3000
+ 'cacsdlib',
3001
+ 'compatibility_functilib',
3002
+ 'corelib',
3003
+ 'data_structureslib',
3004
+ 'demo_toolslib',
3005
+ 'development_toolslib',
3006
+ 'differential_equationlib',
3007
+ 'dynamic_linklib',
3008
+ 'elementary_functionslib',
3009
+ 'enull',
3010
+ 'evoid',
3011
+ 'external_objectslib',
3012
+ 'fd',
3013
+ 'fileiolib',
3014
+ 'functionslib',
3015
+ 'genetic_algorithmslib',
3016
+ 'helptoolslib',
3017
+ 'home',
3018
+ 'integerlib',
3019
+ 'interpolationlib',
3020
+ 'iolib',
3021
+ 'jnull',
3022
+ 'jvoid',
3023
+ 'linear_algebralib',
3024
+ 'm2scilib',
3025
+ 'matiolib',
3026
+ 'modules_managerlib',
3027
+ 'neldermeadlib',
3028
+ 'optimbaselib',
3029
+ 'optimizationlib',
3030
+ 'optimsimplexlib',
3031
+ 'output_streamlib',
3032
+ 'overloadinglib',
3033
+ 'parameterslib',
3034
+ 'polynomialslib',
3035
+ 'preferenceslib',
3036
+ 'randliblib',
3037
+ 'scicos_autolib',
3038
+ 'scicos_utilslib',
3039
+ 'scinoteslib',
3040
+ 'signal_processinglib',
3041
+ 'simulated_annealinglib',
3042
+ 'soundlib',
3043
+ 'sparselib',
3044
+ 'special_functionslib',
3045
+ 'spreadsheetlib',
3046
+ 'statisticslib',
3047
+ 'stringlib',
3048
+ 'tclscilib',
3049
+ 'timelib',
3050
+ 'umfpacklib',
3051
+ 'xcoslib',
3052
+ )
3053
+
3054
+
3055
+ if __name__ == '__main__': # pragma: no cover
3056
+ import subprocess
3057
+ from pygments.util import format_lines, duplicates_removed
3058
+
3059
+ mapping = {'variables': 'builtin'}
3060
+
3061
+ def extract_completion(var_type):
3062
+ s = subprocess.Popen(['scilab', '-nwni'], stdin=subprocess.PIPE,
3063
+ stdout=subprocess.PIPE, stderr=subprocess.PIPE)
3064
+ output = s.communicate('''\
3065
+ fd = mopen("/dev/stderr", "wt");
3066
+ mputl(strcat(completion("", "%s"), "||"), fd);
3067
+ mclose(fd)\n''' % var_type)
3068
+ if '||' not in output[1]:
3069
+ raise Exception(output[0])
3070
+ # Invalid DISPLAY causes this to be output:
3071
+ text = output[1].strip()
3072
+ if text.startswith('Error: unable to open display \n'):
3073
+ text = text[len('Error: unable to open display \n'):]
3074
+ return text.split('||')
3075
+
3076
+ new_data = {}
3077
+ seen = set() # only keep first type for a given word
3078
+ for t in ('functions', 'commands', 'macros', 'variables'):
3079
+ new_data[t] = duplicates_removed(extract_completion(t), seen)
3080
+ seen.update(set(new_data[t]))
3081
+
3082
+
3083
+ with open(__file__) as f:
3084
+ content = f.read()
3085
+
3086
+ header = content[:content.find('# Autogenerated')]
3087
+ footer = content[content.find("if __name__ == '__main__':"):]
3088
+
3089
+ with open(__file__, 'w') as f:
3090
+ f.write(header)
3091
+ f.write('# Autogenerated\n\n')
3092
+ for k, v in sorted(new_data.iteritems()):
3093
+ f.write(format_lines(k + '_kw', v) + '\n\n')
3094
+ f.write(footer)