comparison gui/src/ResourceManager.cpp @ 13665:ddc3c20d0e2f

Implemented highlighting of octave keywords in terminal.
author Jacob Dawid <jacob.dawid@googlemail.com>
date Sat, 10 Sep 2011 09:15:38 +0200
parents 8728061cd0ec
children 421afeae929b
comparison
equal deleted inserted replaced
13664:eb03d0b39c18 13665:ddc3c20d0e2f
108 m_icons [ResourceManager::Terminal] = QIcon ("../media/terminal.png"); 108 m_icons [ResourceManager::Terminal] = QIcon ("../media/terminal.png");
109 m_icons [ResourceManager::Documentation] = QIcon ("../media/help_index.png"); 109 m_icons [ResourceManager::Documentation] = QIcon ("../media/help_index.png");
110 m_icons [ResourceManager::Chat] = QIcon ("../media/chat.png"); 110 m_icons [ResourceManager::Chat] = QIcon ("../media/chat.png");
111 m_icons [ResourceManager::ChatNewMessage] = QIcon ("../media/jabber_protocol.png"); 111 m_icons [ResourceManager::ChatNewMessage] = QIcon ("../media/jabber_protocol.png");
112 } 112 }
113
114 const char*
115 ResourceManager::octaveKeywords ()
116 {
117 return
118 ".nargin. "
119 "EDITOR "
120 "EXEC_PATH "
121 "F_DUPFD "
122 "F_GETFD "
123 "F_GETFL "
124 "F_SETFD "
125 "F_SETFL "
126 "I "
127 "IMAGE_PATH "
128 "Inf "
129 "J "
130 "NA "
131 "NaN "
132 "OCTAVE_HOME "
133 "OCTAVE_VERSION "
134 "O_APPEND "
135 "O_ASYNC "
136 "O_CREAT "
137 "O_EXCL "
138 "O_NONBLOCK "
139 "O_RDONLY "
140 "O_RDWR "
141 "O_SYNC "
142 "O_TRUNC "
143 "O_WRONLY "
144 "PAGER "
145 "PAGER_FLAGS "
146 "PS1 "
147 "PS2 "
148 "PS4 "
149 "P_tmpdir "
150 "SEEK_CUR "
151 "SEEK_END "
152 "SEEK_SET "
153 "SIG "
154 "S_ISBLK "
155 "S_ISCHR "
156 "S_ISDIR "
157 "S_ISFIFO "
158 "S_ISLNK "
159 "S_ISREG "
160 "S_ISSOCK "
161 "WCONTINUE "
162 "WCOREDUMP "
163 "WEXITSTATUS "
164 "WIFCONTINUED "
165 "WIFEXITED "
166 "WIFSIGNALED "
167 "WIFSTOPPED "
168 "WNOHANG "
169 "WSTOPSIG "
170 "WTERMSIG "
171 "WUNTRACED "
172 "__accumarray_max__ "
173 "__accumarray_min__ "
174 "__accumarray_sum__ "
175 "__accumdim_sum__ "
176 "__all_opts__ "
177 "__builtins__ "
178 "__calc_dimensions__ "
179 "__contourc__ "
180 "__current_scope__ "
181 "__delaunayn__ "
182 "__dispatch__ "
183 "__display_tokens__ "
184 "__dsearchn__ "
185 "__dump_symtab_info__ "
186 "__end__ "
187 "__error_text__ "
188 "__finish__ "
189 "__fltk_ginput__ "
190 "__fltk_print__ "
191 "__fltk_uigetfile__ "
192 "__ftp__ "
193 "__ftp_ascii__ "
194 "__ftp_binary__ "
195 "__ftp_close__ "
196 "__ftp_cwd__ "
197 "__ftp_delete__ "
198 "__ftp_dir__ "
199 "__ftp_mget__ "
200 "__ftp_mkdir__ "
201 "__ftp_mode__ "
202 "__ftp_mput__ "
203 "__ftp_pwd__ "
204 "__ftp_rename__ "
205 "__ftp_rmdir__ "
206 "__get__ "
207 "__glpk__ "
208 "__gnuplot_drawnow__ "
209 "__gnuplot_get_var__ "
210 "__gnuplot_ginput__ "
211 "__gnuplot_has_feature__ "
212 "__gnuplot_open_stream__ "
213 "__gnuplot_print__ "
214 "__gnuplot_version__ "
215 "__go_axes__ "
216 "__go_axes_init__ "
217 "__go_close_all__ "
218 "__go_delete__ "
219 "__go_draw_axes__ "
220 "__go_draw_figure__ "
221 "__go_execute_callback__ "
222 "__go_figure__ "
223 "__go_figure_handles__ "
224 "__go_handles__ "
225 "__go_hggroup__ "
226 "__go_image__ "
227 "__go_line__ "
228 "__go_patch__ "
229 "__go_surface__ "
230 "__go_text__ "
231 "__go_uimenu__ "
232 "__gud_mode__ "
233 "__image_pixel_size__ "
234 "__init_fltk__ "
235 "__isa_parent__ "
236 "__keywords__ "
237 "__lexer_debug_flag__ "
238 "__lin_interpn__ "
239 "__list_functions__ "
240 "__magick_finfo__ "
241 "__magick_format_list__ "
242 "__magick_read__ "
243 "__magick_write__ "
244 "__makeinfo__ "
245 "__marching_cube__ "
246 "__next_line_color__ "
247 "__next_line_style__ "
248 "__operators__ "
249 "__parent_classes__ "
250 "__parser_debug_flag__ "
251 "__pathorig__ "
252 "__pchip_deriv__ "
253 "__plt_get_axis_arg__ "
254 "__print_parse_opts__ "
255 "__qp__ "
256 "__request_drawnow__ "
257 "__sort_rows_idx__ "
258 "__strip_html_tags__ "
259 "__token_count__ "
260 "__varval__ "
261 "__version_info__ "
262 "__voronoi__ "
263 "__which__ "
264 "abs "
265 "accumarray "
266 "accumdim "
267 "acos "
268 "acosd "
269 "acosh "
270 "acot "
271 "acotd "
272 "acoth "
273 "acsc "
274 "acscd "
275 "acsch "
276 "add_input_event_hook "
277 "addlistener "
278 "addpath "
279 "addproperty "
280 "addtodate "
281 "airy "
282 "all "
283 "allchild "
284 "allow_noninteger_range_as_index "
285 "amd "
286 "ancestor "
287 "and "
288 "angle "
289 "anova "
290 "ans "
291 "any "
292 "arch_fit "
293 "arch_rnd "
294 "arch_test "
295 "area "
296 "arg "
297 "argnames "
298 "argv "
299 "arma_rnd "
300 "arrayfun "
301 "asctime "
302 "asec "
303 "asecd "
304 "asech "
305 "asin "
306 "asind "
307 "asinh "
308 "assert "
309 "assignin "
310 "atan "
311 "atan2 "
312 "atand "
313 "atanh "
314 "atexit "
315 "autocor "
316 "autocov "
317 "autoload "
318 "autoreg_matrix "
319 "autumn "
320 "available_graphics_toolkits "
321 "axes "
322 "axis "
323 "balance "
324 "bar "
325 "barh "
326 "bartlett "
327 "bartlett_test "
328 "base2dec "
329 "beep "
330 "beep_on_error "
331 "bessel "
332 "besselh "
333 "besseli "
334 "besselj "
335 "besselk "
336 "bessely "
337 "beta "
338 "betacdf "
339 "betai "
340 "betainc "
341 "betainv "
342 "betaln "
343 "betapdf "
344 "betarnd "
345 "bicgstab "
346 "bicubic "
347 "bin2dec "
348 "bincoeff "
349 "binocdf "
350 "binoinv "
351 "binopdf "
352 "binornd "
353 "bitand "
354 "bitcmp "
355 "bitget "
356 "bitmax "
357 "bitor "
358 "bitpack "
359 "bitset "
360 "bitshift "
361 "bitunpack "
362 "bitxor "
363 "blackman "
364 "blanks "
365 "blkdiag "
366 "blkmm "
367 "bone "
368 "box "
369 "break "
370 "brighten "
371 "bsxfun "
372 "bug_report "
373 "builtin "
374 "bunzip2 "
375 "bzip2 "
376 "calendar "
377 "canonicalize_file_name "
378 "cart2pol "
379 "cart2sph "
380 "case "
381 "cast "
382 "cat "
383 "catch "
384 "cauchy_cdf "
385 "cauchy_inv "
386 "cauchy_pdf "
387 "cauchy_rnd "
388 "caxis "
389 "cbrt "
390 "ccolamd "
391 "cd "
392 "ceil "
393 "cell "
394 "cell2mat "
395 "cell2struct "
396 "celldisp "
397 "cellfun "
398 "cellidx "
399 "cellindexmat "
400 "cellslices "
401 "cellstr "
402 "center "
403 "cgs "
404 "char "
405 "chdir "
406 "chi2cdf "
407 "chi2inv "
408 "chi2pdf "
409 "chi2rnd "
410 "chisquare_test_homogeneity "
411 "chisquare_test_independence "
412 "chol "
413 "chol2inv "
414 "choldelete "
415 "cholinsert "
416 "cholinv "
417 "cholshift "
418 "cholupdate "
419 "chop "
420 "circshift "
421 "cla "
422 "clabel "
423 "class "
424 "clc "
425 "clear "
426 "clf "
427 "clg "
428 "clock "
429 "cloglog "
430 "close "
431 "closereq "
432 "colamd "
433 "colloc "
434 "colon "
435 "colorbar "
436 "colormap "
437 "colperm "
438 "colstyle "
439 "columns "
440 "comet "
441 "comet3 "
442 "comma "
443 "command_line_path "
444 "common_size "
445 "commutation_matrix "
446 "compan "
447 "compare_versions "
448 "compass "
449 "complement "
450 "completion_append_char "
451 "completion_matches "
452 "complex "
453 "computer "
454 "cond "
455 "condest "
456 "confirm_recursive_rmdir "
457 "conj "
458 "continue "
459 "contour "
460 "contour3 "
461 "contourc "
462 "contourf "
463 "contrast "
464 "conv "
465 "conv2 "
466 "convhull "
467 "convhulln "
468 "convn "
469 "cool "
470 "copper "
471 "copyfile "
472 "cor "
473 "cor_test "
474 "corrcoef "
475 "cos "
476 "cosd "
477 "cosh "
478 "cot "
479 "cotd "
480 "coth "
481 "cov "
482 "cplxpair "
483 "cputime "
484 "cquad "
485 "crash_dumps_octave_core "
486 "create_set "
487 "cross "
488 "csc "
489 "cscd "
490 "csch "
491 "cstrcat "
492 "csvread "
493 "csvwrite "
494 "csymamd "
495 "ctime "
496 "ctranspose "
497 "cummax "
498 "cummin "
499 "cumprod "
500 "cumsum "
501 "cumtrapz "
502 "curl "
503 "cut "
504 "cylinder "
505 "daspect "
506 "daspk "
507 "daspk_options "
508 "dasrt "
509 "dasrt_options "
510 "dassl "
511 "dassl_options "
512 "date "
513 "datenum "
514 "datestr "
515 "datetick "
516 "datevec "
517 "dbclear "
518 "dbcont "
519 "dbdown "
520 "dblquad "
521 "dbnext "
522 "dbquit "
523 "dbstack "
524 "dbstatus "
525 "dbstep "
526 "dbstop "
527 "dbtype "
528 "dbup "
529 "dbwhere "
530 "deal "
531 "deblank "
532 "debug "
533 "debug_on_error "
534 "debug_on_interrupt "
535 "debug_on_warning "
536 "dec2base "
537 "dec2bin "
538 "dec2hex "
539 "deconv "
540 "default_save_options "
541 "del2 "
542 "delaunay "
543 "delaunay3 "
544 "delaunayn "
545 "delete "
546 "dellistener "
547 "demo "
548 "det "
549 "detrend "
550 "diag "
551 "diary "
552 "diff "
553 "diffpara "
554 "diffuse "
555 "dir "
556 "discrete_cdf "
557 "discrete_inv "
558 "discrete_pdf "
559 "discrete_rnd "
560 "disp "
561 "dispatch "
562 "display "
563 "divergence "
564 "dlmread "
565 "dlmwrite "
566 "dmperm "
567 "dmult "
568 "do "
569 "do_braindead_shortcircuit_evaluation "
570 "do_string_escapes "
571 "doc "
572 "doc_cache_file "
573 "dos "
574 "dot "
575 "double "
576 "drawnow "
577 "dsearch "
578 "dsearchn "
579 "dump_prefs "
580 "dup2 "
581 "duplication_matrix "
582 "durbinlevinson "
583 "e "
584 "echo "
585 "echo_executing_commands "
586 "edit "
587 "edit_history "
588 "eig "
589 "eigs "
590 "ellipsoid "
591 "else "
592 "elseif "
593 "empirical_cdf "
594 "empirical_inv "
595 "empirical_pdf "
596 "empirical_rnd "
597 "end "
598 "end_try_catch "
599 "end_unwind_protect "
600 "endfor "
601 "endfunction "
602 "endgrent "
603 "endif "
604 "endpwent "
605 "endswitch "
606 "endwhile "
607 "eomday "
608 "eps "
609 "eq "
610 "erf "
611 "erfc "
612 "erfcx "
613 "erfinv "
614 "errno "
615 "errno_list "
616 "error "
617 "error_text "
618 "errorbar "
619 "etime "
620 "etree "
621 "etreeplot "
622 "eval "
623 "evalin "
624 "example "
625 "exec "
626 "exist "
627 "exit "
628 "exp "
629 "expcdf "
630 "expinv "
631 "expm "
632 "expm1 "
633 "exppdf "
634 "exprnd "
635 "eye "
636 "ezcontour "
637 "ezcontourf "
638 "ezmesh "
639 "ezmeshc "
640 "ezplot "
641 "ezplot3 "
642 "ezpolar "
643 "ezsurf "
644 "ezsurfc "
645 "f_test_regression "
646 "factor "
647 "factorial "
648 "fail "
649 "false "
650 "fcdf "
651 "fclear "
652 "fclose "
653 "fcntl "
654 "fdisp "
655 "feather "
656 "feof "
657 "ferror "
658 "feval "
659 "fflush "
660 "fft "
661 "fft2 "
662 "fftconv "
663 "fftfilt "
664 "fftn "
665 "fftshift "
666 "fftw "
667 "fgetl "
668 "fgets "
669 "fieldnames "
670 "figure "
671 "file_in_loadpath "
672 "file_in_path "
673 "fileattrib "
674 "filemarker "
675 "fileparts "
676 "fileread "
677 "filesep "
678 "fill "
679 "filter "
680 "filter2 "
681 "find "
682 "find_dir_in_path "
683 "findall "
684 "findobj "
685 "findstr "
686 "finite "
687 "finv "
688 "fix "
689 "fixed_point_format "
690 "flag "
691 "flipdim "
692 "fliplr "
693 "flipud "
694 "floor "
695 "fminbnd "
696 "fminunc "
697 "fmod "
698 "fnmatch "
699 "fopen "
700 "for "
701 "fork "
702 "format "
703 "formula "
704 "fpdf "
705 "fplot "
706 "fprintf "
707 "fputs "
708 "fractdiff "
709 "fread "
710 "freport "
711 "freqz "
712 "freqz_plot "
713 "frewind "
714 "frnd "
715 "fscanf "
716 "fseek "
717 "fskipl "
718 "fsolve "
719 "fstat "
720 "ftell "
721 "full "
722 "fullfile "
723 "func2str "
724 "function "
725 "functions "
726 "fwrite "
727 "fzero "
728 "gamcdf "
729 "gaminv "
730 "gamma "
731 "gammai "
732 "gammainc "
733 "gammaln "
734 "gampdf "
735 "gamrnd "
736 "gca "
737 "gcbf "
738 "gcbo "
739 "gcd "
740 "gcf "
741 "ge "
742 "gen_doc_cache "
743 "genpath "
744 "genvarname "
745 "geocdf "
746 "geoinv "
747 "geopdf "
748 "geornd "
749 "get "
750 "get_first_help_sentence "
751 "get_help_text "
752 "get_help_text_from_file "
753 "getappdata "
754 "getegid "
755 "getenv "
756 "geteuid "
757 "getfield "
758 "getgid "
759 "getgrent "
760 "getgrgid "
761 "getgrnam "
762 "gethostname "
763 "getpgrp "
764 "getpid "
765 "getppid "
766 "getpwent "
767 "getpwnam "
768 "getpwuid "
769 "getrusage "
770 "getuid "
771 "ginput "
772 "givens "
773 "glob "
774 "global "
775 "glpk "
776 "glpkmex "
777 "gls "
778 "gmap40 "
779 "gmres "
780 "gmtime "
781 "gnuplot_binary "
782 "gplot "
783 "gradient "
784 "graphics_toolkit "
785 "gray "
786 "gray2ind "
787 "grid "
788 "griddata "
789 "griddata3 "
790 "griddatan "
791 "gt "
792 "gtext "
793 "gunzip "
794 "gzip "
795 "hadamard "
796 "hamming "
797 "hankel "
798 "hanning "
799 "help "
800 "hess "
801 "hex2dec "
802 "hex2num "
803 "hggroup "
804 "hidden "
805 "hilb "
806 "hist "
807 "histc "
808 "history "
809 "history_control "
810 "history_file "
811 "history_size "
812 "history_timestamp_format_string "
813 "hold "
814 "home "
815 "horzcat "
816 "hot "
817 "hotelling_test "
818 "hotelling_test_2 "
819 "housh "
820 "hsv "
821 "hsv2rgb "
822 "hurst "
823 "hygecdf "
824 "hygeinv "
825 "hygepdf "
826 "hygernd "
827 "hypot "
828 "i "
829 "idivide "
830 "if "
831 "ifelse "
832 "ifft "
833 "ifft2 "
834 "ifftn "
835 "ifftshift "
836 "ignore_function_time_stamp "
837 "imag "
838 "image "
839 "imagesc "
840 "imfinfo "
841 "imread "
842 "imshow "
843 "imwrite "
844 "ind2gray "
845 "ind2rgb "
846 "ind2sub "
847 "index "
848 "inf "
849 "inferiorto "
850 "info "
851 "info_file "
852 "info_program "
853 "inline "
854 "inpolygon "
855 "input "
856 "inputname "
857 "int16 "
858 "int2str "
859 "int32 "
860 "int64 "
861 "int8 "
862 "interp1 "
863 "interp1q "
864 "interp2 "
865 "interp3 "
866 "interpft "
867 "interpn "
868 "intersect "
869 "intmax "
870 "intmin "
871 "intwarning "
872 "inv "
873 "inverse "
874 "invhilb "
875 "ipermute "
876 "iqr "
877 "is_absolute_filename "
878 "is_duplicate_entry "
879 "is_global "
880 "is_leap_year "
881 "is_rooted_relative_filename "
882 "is_valid_file_id "
883 "isa "
884 "isalnum "
885 "isalpha "
886 "isappdata "
887 "isargout "
888 "isascii "
889 "isbool "
890 "iscell "
891 "iscellstr "
892 "ischar "
893 "iscntrl "
894 "iscolumn "
895 "iscommand "
896 "iscomplex "
897 "isdebugmode "
898 "isdefinite "
899 "isdeployed "
900 "isdigit "
901 "isdir "
902 "isempty "
903 "isequal "
904 "isequalwithequalnans "
905 "isfield "
906 "isfigure "
907 "isfinite "
908 "isfloat "
909 "isglobal "
910 "isgraph "
911 "ishandle "
912 "ishermitian "
913 "ishghandle "
914 "ishold "
915 "isieee "
916 "isindex "
917 "isinf "
918 "isinteger "
919 "iskeyword "
920 "isletter "
921 "islogical "
922 "islower "
923 "ismac "
924 "ismatrix "
925 "ismember "
926 "ismethod "
927 "isna "
928 "isnan "
929 "isnull "
930 "isnumeric "
931 "isobject "
932 "isocolors "
933 "isonormals "
934 "isosurface "
935 "ispc "
936 "isprime "
937 "isprint "
938 "isprop "
939 "ispunct "
940 "israwcommand "
941 "isreal "
942 "isrow "
943 "isscalar "
944 "issorted "
945 "isspace "
946 "issparse "
947 "issquare "
948 "isstr "
949 "isstrprop "
950 "isstruct "
951 "issymmetric "
952 "isunix "
953 "isupper "
954 "isvarname "
955 "isvector "
956 "isxdigit "
957 "j "
958 "jet "
959 "kbhit "
960 "kendall "
961 "keyboard "
962 "kill "
963 "kolmogorov_smirnov_cdf "
964 "kolmogorov_smirnov_test "
965 "kolmogorov_smirnov_test_2 "
966 "kron "
967 "kruskal_wallis_test "
968 "krylov "
969 "krylovb "
970 "kurtosis "
971 "laplace_cdf "
972 "laplace_inv "
973 "laplace_pdf "
974 "laplace_rnd "
975 "lasterr "
976 "lasterror "
977 "lastwarn "
978 "lchol "
979 "lcm "
980 "ldivide "
981 "le "
982 "legend "
983 "legendre "
984 "length "
985 "lgamma "
986 "license "
987 "lin2mu "
988 "line "
989 "link "
990 "linkprop "
991 "linspace "
992 "list "
993 "list_in_columns "
994 "list_primes "
995 "load "
996 "loadaudio "
997 "loadimage "
998 "loadobj "
999 "localtime "
1000 "log "
1001 "log10 "
1002 "log1p "
1003 "log2 "
1004 "logical "
1005 "logistic_cdf "
1006 "logistic_inv "
1007 "logistic_pdf "
1008 "logistic_regression "
1009 "logistic_rnd "
1010 "logit "
1011 "loglog "
1012 "loglogerr "
1013 "logm "
1014 "logncdf "
1015 "logninv "
1016 "lognpdf "
1017 "lognrnd "
1018 "logspace "
1019 "lookfor "
1020 "lookup "
1021 "lower "
1022 "ls "
1023 "ls_command "
1024 "lsode "
1025 "lsode_options "
1026 "lsqnonneg "
1027 "lstat "
1028 "lt "
1029 "lu "
1030 "luinc "
1031 "luupdate "
1032 "magic "
1033 "mahalanobis "
1034 "make_absolute_filename "
1035 "makeinfo_program "
1036 "manova "
1037 "mark_as_command "
1038 "mark_as_rawcommand "
1039 "mat2cell "
1040 "mat2str "
1041 "matlabroot "
1042 "matrix_type "
1043 "max "
1044 "max_recursion_depth "
1045 "mcnemar_test "
1046 "md5sum "
1047 "mean "
1048 "meansq "
1049 "median "
1050 "menu "
1051 "merge "
1052 "mesh "
1053 "meshc "
1054 "meshgrid "
1055 "meshz "
1056 "methods "
1057 "mex "
1058 "mexext "
1059 "mfilename "
1060 "mgorth "
1061 "min "
1062 "minus "
1063 "mislocked "
1064 "missing_function_hook "
1065 "mist "
1066 "mkdir "
1067 "mkfifo "
1068 "mkoctfile "
1069 "mkpp "
1070 "mkstemp "
1071 "mktime "
1072 "mldivide "
1073 "mlock "
1074 "mod "
1075 "mode "
1076 "moment "
1077 "more "
1078 "most "
1079 "movefile "
1080 "mpoles "
1081 "mpower "
1082 "mrdivide "
1083 "mtimes "
1084 "mu2lin "
1085 "munlock "
1086 "namelengthmax "
1087 "nan "
1088 "nargchk "
1089 "nargin "
1090 "nargout "
1091 "nargoutchk "
1092 "native_float_format "
1093 "nbincdf "
1094 "nbininv "
1095 "nbinpdf "
1096 "nbinrnd "
1097 "nchoosek "
1098 "ndgrid "
1099 "ndims "
1100 "ne "
1101 "newplot "
1102 "news "
1103 "nextpow2 "
1104 "nfields "
1105 "nnz "
1106 "nonzeros "
1107 "norm "
1108 "normcdf "
1109 "normest "
1110 "norminv "
1111 "normpdf "
1112 "normrnd "
1113 "not "
1114 "now "
1115 "nproc "
1116 "nth_element "
1117 "nthroot "
1118 "ntsc2rgb "
1119 "null "
1120 "num2cell "
1121 "num2hex "
1122 "num2str "
1123 "numel "
1124 "nzmax "
1125 "ocean "
1126 "octave_config_info "
1127 "octave_core_file_limit "
1128 "octave_core_file_name "
1129 "octave_core_file_options "
1130 "octave_tmp_file_name "
1131 "ols "
1132 "onCleanup "
1133 "onenormest "
1134 "ones "
1135 "optimget "
1136 "optimize_subsasgn_calls "
1137 "optimset "
1138 "or "
1139 "orderfields "
1140 "orient "
1141 "orth "
1142 "otherwise "
1143 "output_max_field_width "
1144 "output_precision "
1145 "pack "
1146 "page_output_immediately "
1147 "page_screen_output "
1148 "paren "
1149 "pareto "
1150 "parseparams "
1151 "pascal "
1152 "patch "
1153 "path "
1154 "pathdef "
1155 "pathsep "
1156 "pause "
1157 "pbaspect "
1158 "pcg "
1159 "pchip "
1160 "pclose "
1161 "pcolor "
1162 "pcr "
1163 "peaks "
1164 "periodogram "
1165 "perl "
1166 "perms "
1167 "permute "
1168 "perror "
1169 "persistent "
1170 "pi "
1171 "pie "
1172 "pie3 "
1173 "pink "
1174 "pinv "
1175 "pipe "
1176 "pkg "
1177 "planerot "
1178 "playaudio "
1179 "plot "
1180 "plot3 "
1181 "plotmatrix "
1182 "plotyy "
1183 "plus "
1184 "poisscdf "
1185 "poissinv "
1186 "poisspdf "
1187 "poissrnd "
1188 "pol2cart "
1189 "polar "
1190 "poly "
1191 "polyaffine "
1192 "polyarea "
1193 "polyder "
1194 "polyderiv "
1195 "polyfit "
1196 "polygcd "
1197 "polyint "
1198 "polyout "
1199 "polyreduce "
1200 "polyval "
1201 "polyvalm "
1202 "popen "
1203 "popen2 "
1204 "postpad "
1205 "pow2 "
1206 "power "
1207 "powerset "
1208 "ppder "
1209 "ppint "
1210 "ppjumps "
1211 "ppplot "
1212 "ppval "
1213 "pqpnonneg "
1214 "prctile "
1215 "prepad "
1216 "primes "
1217 "print "
1218 "print_empty_dimensions "
1219 "print_struct_array_contents "
1220 "print_usage "
1221 "printf "
1222 "prism "
1223 "probit "
1224 "prod "
1225 "program_invocation_name "
1226 "program_name "
1227 "prop_test_2 "
1228 "putenv "
1229 "puts "
1230 "pwd "
1231 "qp "
1232 "qqplot "
1233 "qr "
1234 "qrdelete "
1235 "qrinsert "
1236 "qrshift "
1237 "qrupdate "
1238 "quad "
1239 "quad_options "
1240 "quadcc "
1241 "quadgk "
1242 "quadl "
1243 "quadv "
1244 "quantile "
1245 "quit "
1246 "quiver "
1247 "quiver3 "
1248 "qz "
1249 "qzhess "
1250 "rainbow "
1251 "rand "
1252 "rande "
1253 "randg "
1254 "randi "
1255 "randn "
1256 "randp "
1257 "randperm "
1258 "range "
1259 "rank "
1260 "ranks "
1261 "rat "
1262 "rats "
1263 "rcond "
1264 "rdivide "
1265 "re_read_readline_init_file "
1266 "read_readline_init_file "
1267 "readdir "
1268 "readlink "
1269 "real "
1270 "reallog "
1271 "realmax "
1272 "realmin "
1273 "realpow "
1274 "realsqrt "
1275 "record "
1276 "rectangle "
1277 "rectint "
1278 "refresh "
1279 "refreshdata "
1280 "regexp "
1281 "regexpi "
1282 "regexprep "
1283 "regexptranslate "
1284 "rehash "
1285 "rem "
1286 "remove_input_event_hook "
1287 "rename "
1288 "repelems "
1289 "replot "
1290 "repmat "
1291 "reset "
1292 "reshape "
1293 "residue "
1294 "resize "
1295 "restoredefaultpath "
1296 "rethrow "
1297 "return "
1298 "rgb2hsv "
1299 "rgb2ind "
1300 "rgb2ntsc "
1301 "ribbon "
1302 "rindex "
1303 "rmappdata "
1304 "rmdir "
1305 "rmfield "
1306 "rmpath "
1307 "roots "
1308 "rose "
1309 "rosser "
1310 "rot90 "
1311 "rotdim "
1312 "round "
1313 "roundb "
1314 "rows "
1315 "rref "
1316 "rsf2csf "
1317 "run "
1318 "run_count "
1319 "run_history "
1320 "run_test "
1321 "rundemos "
1322 "runlength "
1323 "runtests "
1324 "save "
1325 "save_header_format_string "
1326 "save_precision "
1327 "saveas "
1328 "saveaudio "
1329 "saveimage "
1330 "saveobj "
1331 "savepath "
1332 "saving_history "
1333 "scanf "
1334 "scatter "
1335 "scatter3 "
1336 "schur "
1337 "sec "
1338 "secd "
1339 "sech "
1340 "semicolon "
1341 "semilogx "
1342 "semilogxerr "
1343 "semilogy "
1344 "semilogyerr "
1345 "set "
1346 "setappdata "
1347 "setaudio "
1348 "setdiff "
1349 "setenv "
1350 "setfield "
1351 "setgrent "
1352 "setpwent "
1353 "setstr "
1354 "setxor "
1355 "shading "
1356 "shell_cmd "
1357 "shg "
1358 "shift "
1359 "shiftdim "
1360 "sighup_dumps_octave_core "
1361 "sign "
1362 "sign_test "
1363 "sigterm_dumps_octave_core "
1364 "silent_functions "
1365 "sin "
1366 "sinc "
1367 "sind "
1368 "sinetone "
1369 "sinewave "
1370 "single "
1371 "sinh "
1372 "size "
1373 "size_equal "
1374 "sizemax "
1375 "sizeof "
1376 "skewness "
1377 "sleep "
1378 "slice "
1379 "sombrero "
1380 "sort "
1381 "sortrows "
1382 "source "
1383 "spalloc "
1384 "sparse "
1385 "sparse_auto_mutate "
1386 "spatan2 "
1387 "spaugment "
1388 "spchol "
1389 "spchol2inv "
1390 "spcholinv "
1391 "spconvert "
1392 "spcumprod "
1393 "spcumsum "
1394 "spdet "
1395 "spdiag "
1396 "spdiags "
1397 "spearman "
1398 "spectral_adf "
1399 "spectral_xdf "
1400 "specular "
1401 "speed "
1402 "spencer "
1403 "speye "
1404 "spfind "
1405 "spfun "
1406 "sph2cart "
1407 "sphcat "
1408 "sphere "
1409 "spinmap "
1410 "spinv "
1411 "spkron "
1412 "splchol "
1413 "spline "
1414 "split "
1415 "split_long_rows "
1416 "splu "
1417 "spmax "
1418 "spmin "
1419 "spones "
1420 "spparms "
1421 "spprod "
1422 "spqr "
1423 "sprand "
1424 "sprandn "
1425 "sprandsym "
1426 "sprank "
1427 "spring "
1428 "sprintf "
1429 "spstats "
1430 "spsum "
1431 "spsumsq "
1432 "spvcat "
1433 "spy "
1434 "sqp "
1435 "sqrt "
1436 "sqrtm "
1437 "squeeze "
1438 "sscanf "
1439 "stairs "
1440 "stat "
1441 "static "
1442 "statistics "
1443 "std "
1444 "stderr "
1445 "stdin "
1446 "stdnormal_cdf "
1447 "stdnormal_inv "
1448 "stdnormal_pdf "
1449 "stdnormal_rnd "
1450 "stdout "
1451 "stem "
1452 "stem3 "
1453 "stft "
1454 "str2double "
1455 "str2func "
1456 "str2mat "
1457 "str2num "
1458 "strcat "
1459 "strchr "
1460 "strcmp "
1461 "strcmpi "
1462 "strerror "
1463 "strfind "
1464 "strftime "
1465 "string_fill_char "
1466 "strjust "
1467 "strmatch "
1468 "strncmp "
1469 "strncmpi "
1470 "strptime "
1471 "strread "
1472 "strrep "
1473 "strsplit "
1474 "strtok "
1475 "strtrim "
1476 "strtrunc "
1477 "struct "
1478 "struct2cell "
1479 "struct_levels_to_print "
1480 "structfun "
1481 "strvcat "
1482 "studentize "
1483 "sub2ind "
1484 "subplot "
1485 "subsasgn "
1486 "subsindex "
1487 "subspace "
1488 "subsref "
1489 "substr "
1490 "substruct "
1491 "sum "
1492 "summer "
1493 "sumsq "
1494 "superiorto "
1495 "suppress_verbose_help_message "
1496 "surf "
1497 "surface "
1498 "surfc "
1499 "surfl "
1500 "surfnorm "
1501 "svd "
1502 "svd_driver "
1503 "svds "
1504 "swapbytes "
1505 "switch "
1506 "syl "
1507 "sylvester_matrix "
1508 "symamd "
1509 "symbfact "
1510 "symlink "
1511 "symrcm "
1512 "symvar "
1513 "synthesis "
1514 "system "
1515 "t_test "
1516 "t_test_2 "
1517 "t_test_regression "
1518 "table "
1519 "tan "
1520 "tand "
1521 "tanh "
1522 "tar "
1523 "tcdf "
1524 "tempdir "
1525 "tempname "
1526 "terminal_size "
1527 "test "
1528 "test2 "
1529 "test3 "
1530 "text "
1531 "textread "
1532 "textscan "
1533 "tic "
1534 "tilde_expand "
1535 "time "
1536 "times "
1537 "tinv "
1538 "title "
1539 "tmpfile "
1540 "tmpnam "
1541 "toascii "
1542 "toc "
1543 "toeplitz "
1544 "tolower "
1545 "toupper "
1546 "tpdf "
1547 "trace "
1548 "transpose "
1549 "trapz "
1550 "treelayout "
1551 "treeplot "
1552 "tril "
1553 "trimesh "
1554 "triplequad "
1555 "triplot "
1556 "trisurf "
1557 "triu "
1558 "trnd "
1559 "true "
1560 "try "
1561 "tsearch "
1562 "tsearchn "
1563 "type "
1564 "typecast "
1565 "typeinfo "
1566 "u_test "
1567 "uigetdir "
1568 "uigetfile "
1569 "uimenu "
1570 "uint16 "
1571 "uint32 "
1572 "uint64 "
1573 "uint8 "
1574 "uiputfile "
1575 "umask "
1576 "uminus "
1577 "uname "
1578 "undo_string_escapes "
1579 "unidcdf "
1580 "unidinv "
1581 "unidpdf "
1582 "unidrnd "
1583 "unifcdf "
1584 "unifinv "
1585 "unifpdf "
1586 "unifrnd "
1587 "unimplemented "
1588 "union "
1589 "unique "
1590 "unix "
1591 "unlink "
1592 "unmark_command "
1593 "unmark_rawcommand "
1594 "unmkpp "
1595 "unpack "
1596 "untabify "
1597 "untar "
1598 "until "
1599 "unwind_protect "
1600 "unwind_protect_cleanup "
1601 "unwrap "
1602 "unzip "
1603 "uplus "
1604 "upper "
1605 "urlread "
1606 "urlwrite "
1607 "usage "
1608 "usleep "
1609 "validatestring "
1610 "values "
1611 "vander "
1612 "var "
1613 "var_test "
1614 "varargin "
1615 "varargout "
1616 "vec "
1617 "vech "
1618 "vectorize "
1619 "ver "
1620 "version "
1621 "vertcat "
1622 "view "
1623 "voronoi "
1624 "voronoin "
1625 "waitforbuttonpress "
1626 "waitpid "
1627 "warning "
1628 "warning_ids "
1629 "warranty "
1630 "wavread "
1631 "wavwrite "
1632 "wblcdf "
1633 "wblinv "
1634 "wblpdf "
1635 "wblrnd "
1636 "weekday "
1637 "weibcdf "
1638 "weibinv "
1639 "weibpdf "
1640 "weibrnd "
1641 "welch_test "
1642 "what "
1643 "which "
1644 "while "
1645 "white "
1646 "whitebg "
1647 "who "
1648 "whos "
1649 "whos_line_format "
1650 "wienrnd "
1651 "wilcoxon_test "
1652 "wilkinson "
1653 "winter "
1654 "xlabel "
1655 "xlim "
1656 "xor "
1657 "yes_or_no "
1658 "ylabel "
1659 "ylim "
1660 "yulewalker "
1661 "z_test "
1662 "z_test_2 "
1663 "zeros "
1664 "zip "
1665 "zlabel "
1666 "zlim ";
1667 /* "break case catch continue do else elseif end end_unwind_protect "
1668 "endfor endfunction endif endswitch endwhile for function "
1669 "global if otherwise persistent return switch try until "
1670 "unwind_protect unwind_protect_cleanup while";
1671 */
1672 }