1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527
|
;;; calc-graph.el --- graph output functions for Calc -*- lexical-binding:t -*-
;; Copyright (C) 1990-1993, 2001-2025 Free Software Foundation, Inc.
;; Author: David Gillespie <daveg@synaptics.com>
;; This file is part of GNU Emacs.
;; GNU Emacs is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;;; Code:
;; This file is autoloaded from calc-ext.el.
(require 'calc-ext)
(require 'calc-macs)
;;; Graphics
;; The following three variables are customizable and defined in calc.el.
(defvar calc-gnuplot-name)
(defvar calc-gnuplot-plot-command)
(defvar calc-gnuplot-print-command)
(defvar calc-gnuplot-tempfile "calc")
(defvar calc-gnuplot-default-device)
(defvar calc-gnuplot-default-output)
(defvar calc-gnuplot-print-device)
(defvar calc-gnuplot-print-output)
(defvar calc-gnuplot-keep-outfile nil)
(defvar calc-gnuplot-version nil)
(defvar calc-gnuplot-display (getenv "DISPLAY"))
(defvar calc-gnuplot-geometry)
(defvar calc-graph-default-resolution)
(defvar calc-graph-default-resolution-3d)
(defvar calc-graph-default-precision 5)
(defvar calc-gnuplot-buffer nil)
(defvar calc-gnuplot-input nil)
(defvar calc-gnuplot-last-error-pos 1)
(defvar calc-graph-last-device nil)
(defvar calc-graph-last-output nil)
(defvar calc-graph-file-cache nil)
(defvar calc-graph-var-cache nil)
(defvar calc-graph-data-cache nil)
(defvar calc-graph-data-cache-limit 10)
(defvar calc-graph-no-auto-view nil)
(defvar calc-graph-no-wait nil)
(defvar calc-gnuplot-trail-mark)
(defsubst calc-graph-w32-p ()
(eq system-type 'windows-nt))
(defun calc-graph-fast (many)
(interactive "P")
(let ((calc-graph-no-auto-view t))
(calc-graph-delete t)
(calc-graph-add many)
(calc-graph-plot nil)))
(defun calc-graph-fast-3d (many)
(interactive "P")
(let ((calc-graph-no-auto-view t))
(calc-graph-delete t)
(calc-graph-add-3d many)
(calc-graph-plot nil)))
(defun calc-graph-delete (all)
(interactive "P")
(calc-wrapper
(calc-graph-init)
(with-current-buffer calc-gnuplot-input
(and (calc-graph-find-plot t all)
(progn
(if (looking-at "s?plot")
(progn
(setq calc-graph-var-cache nil)
(delete-region (point) (point-max)))
(delete-region (point) (1- (point-max)))))))
(calc-graph-view-commands)))
(defun calc-graph-find-plot (&optional before all)
(goto-char (point-min))
(and (re-search-forward "^s?plot[ \t]+" nil t)
(let ((beg (point)))
(goto-char (point-max))
(if (or all
(not (search-backward "," nil t))
(< (point) beg))
(progn
(goto-char beg)
(if before
(beginning-of-line)))
(or before
(re-search-forward ",[ \t]+")))
t)))
(defun calc-graph-add (many)
(interactive "P")
(calc-wrapper
(calc-graph-init)
(cond ((null many)
(calc-graph-add-curve (calc-graph-lookup (calc-top-n 2))
(calc-graph-lookup (calc-top-n 1))))
((or (consp many) (eq many 0))
(let ((xdata (calc-graph-lookup (calc-top-n 2)))
(ylist (calc-top-n 1)))
(or (eq (car-safe ylist) 'vec)
(error "Y argument must be a vector"))
(while (setq ylist (cdr ylist))
(calc-graph-add-curve xdata (calc-graph-lookup (car ylist))))))
((> (setq many (prefix-numeric-value many)) 0)
(let ((xdata (calc-graph-lookup (calc-top-n (1+ many)))))
(while (> many 0)
(calc-graph-add-curve xdata
(calc-graph-lookup (calc-top-n many)))
(setq many (1- many)))))
(t
(let (pair)
(setq many (- many))
(while (> many 0)
(setq pair (calc-top-n many))
(or (and (eq (car-safe pair) 'vec)
(= (length pair) 3))
(error "Argument must be an [x,y] vector"))
(calc-graph-add-curve (calc-graph-lookup (nth 1 pair))
(calc-graph-lookup (nth 2 pair)))
(setq many (1- many))))))
(calc-graph-view-commands)))
(defun calc-graph-add-3d (many)
(interactive "P")
(calc-wrapper
(calc-graph-init)
(cond ((null many)
(calc-graph-add-curve (calc-graph-lookup (calc-top-n 3))
(calc-graph-lookup (calc-top-n 2))
(calc-graph-lookup (calc-top-n 1))))
((or (consp many) (eq many 0))
(let ((xdata (calc-graph-lookup (calc-top-n 3)))
(ydata (calc-graph-lookup (calc-top-n 2)))
(zlist (calc-top-n 1)))
(or (eq (car-safe zlist) 'vec)
(error "Z argument must be a vector"))
(while (setq zlist (cdr zlist))
(calc-graph-add-curve xdata ydata
(calc-graph-lookup (car zlist))))))
((> (setq many (prefix-numeric-value many)) 0)
(let ((xdata (calc-graph-lookup (calc-top-n (+ many 2))))
(ydata (calc-graph-lookup (calc-top-n (+ many 1)))))
(while (> many 0)
(calc-graph-add-curve xdata ydata
(calc-graph-lookup (calc-top-n many)))
(setq many (1- many)))))
(t
(let (curve)
(setq many (- many))
(while (> many 0)
(setq curve (calc-top-n many))
(or (and (eq (car-safe curve) 'vec)
(= (length curve) 4))
(error "Argument must be an [x,y,z] vector"))
(calc-graph-add-curve (calc-graph-lookup (nth 1 curve))
(calc-graph-lookup (nth 2 curve))
(calc-graph-lookup (nth 3 curve)))
(setq many (1- many))))))
(calc-graph-view-commands)))
(defun calc-graph-add-curve (xdata ydata &optional zdata)
(let ((num (calc-graph-count-curves))
(pstyle (calc-var-value 'var-PointStyles))
(lstyle (calc-var-value 'var-LineStyles)))
(with-current-buffer calc-gnuplot-input
(goto-char (point-min))
(if (re-search-forward (if zdata "^plot[ \t]" "^splot[ \t]")
nil t)
(error "Can't mix 2d and 3d curves on one graph"))
(if (re-search-forward "^s?plot[ \t]" nil t)
(progn
(end-of-line)
(insert ", "))
(goto-char (point-max))
(or (eq (preceding-char) ?\n)
(insert "\n"))
(insert (if zdata "splot" "plot") " \n")
(forward-char -1))
(insert "{" (symbol-name (nth 1 xdata))
":" (symbol-name (nth 1 ydata)))
(if zdata
(insert ":" (symbol-name (nth 1 zdata))))
(insert "} "
"title \"" (symbol-name (nth 1 ydata)) "\" "
"with dots")
(setq pstyle (and (eq (car-safe pstyle) 'vec) (nth (1+ num) pstyle)))
(setq lstyle (and (eq (car-safe lstyle) 'vec) (nth (1+ num) lstyle))))
(calc-graph-set-styles
(or (and (Math-num-integerp lstyle) (math-trunc lstyle))
0)
(or (and (Math-num-integerp pstyle) (math-trunc pstyle))
(if (eq (car-safe (calc-var-value (nth 2 ydata))) 'vec)
0 -1))
(math-contains-sdev-p (eval (nth 2 ydata) t)))))
(defun calc-graph-lookup (thing)
(if (and (eq (car-safe thing) 'var)
(calc-var-value (nth 2 thing)))
thing
(let ((found (assoc thing calc-graph-var-cache)))
(or found
(let ((varname (concat "PlotData"
(int-to-string
(1+ (length calc-graph-var-cache)))))
var)
(setq var (list 'var (intern varname)
(intern (concat "var-" varname)))
found (cons thing var)
calc-graph-var-cache (cons found calc-graph-var-cache))
(set (nth 2 var) thing)))
(cdr found))))
(defun calc-graph-juggle (arg)
(interactive "p")
(calc-graph-init)
(with-current-buffer calc-gnuplot-input
(if (< arg 0)
(let ((num (calc-graph-count-curves)))
(if (> num 0)
(while (< arg 0)
(setq arg (+ arg num))))))
(while (>= (setq arg (1- arg)) 0)
(calc-graph-do-juggle))))
(defun calc-graph-count-curves ()
(with-current-buffer calc-gnuplot-input
(if (re-search-forward "^s?plot[ \t]" nil t)
(let ((num 1))
(goto-char (point-min))
(while (search-forward "," nil t)
(setq num (1+ num)))
num)
0)))
(defun calc-graph-do-juggle ()
(let (base)
(and (calc-graph-find-plot t t)
(progn
(setq base (point))
(calc-graph-find-plot t nil)
(or (eq base (point))
(let ((str (buffer-substring (+ (point) 2) (1- (point-max)))))
(delete-region (point) (1- (point-max)))
(goto-char (+ base 5))
(insert str ", ")))))))
(defun calc-graph-print (flag)
(interactive "P")
(calc-graph-plot flag t))
(defvar var-DUMMY)
(defvar var-DUMMY2)
(defvar var-PlotRejects)
;; The following variables are local to calc-graph-plot, but are
;; used in the functions calc-graph-compute-2d, calc-graph-refine-2d,
;; calc-graph-recompute-2d, calc-graph-compute-3d and
;; calc-graph-format-data, which are called by calc-graph-plot.
(defvar calc-graph-yvalue)
(defvar calc-graph-yvec)
(defvar calc-graph-numsteps)
(defvar calc-graph-numsteps3)
(defvar calc-graph-xvalue)
(defvar calc-graph-xvec)
(defvar calc-graph-xname)
(defvar calc-graph-yname)
(defvar calc-graph-xstep)
(defvar calc-graph-ycache)
(defvar calc-graph-ycacheptr)
(defvar calc-graph-refine)
(defvar calc-graph-keep-file)
(defvar calc-graph-xval)
(defvar calc-graph-xlow)
(defvar calc-graph-xhigh)
(defvar calc-graph-yval)
(defvar calc-graph-yp)
(defvar calc-graph-xp)
(defvar calc-graph-zp)
(defvar calc-graph-yvector)
(defvar calc-graph-resolution)
(defvar calc-graph-y3value)
(defvar calc-graph-y3name)
(defvar calc-graph-y3step)
(defvar calc-graph-zval)
(defvar calc-graph-stepcount)
(defvar calc-graph-is-splot)
(defvar calc-graph-surprise-splot)
(defvar calc-graph-blank)
(defvar calc-graph-non-blank)
(defvar calc-graph-curve-num)
(defvar math-arglist)
(defun calc-graph-plot (flag &optional printing)
(interactive "P")
(calc-slow-wrapper
(let ((calcbuf (current-buffer))
(tempbuf (get-buffer-create "*Gnuplot Temp-2*"))
(tempoutfile nil)
(calc-graph-curve-num 0)
(calc-graph-refine (and flag (> (prefix-numeric-value flag) 0)))
(recompute (and flag (< (prefix-numeric-value flag) 0)))
(calc-graph-surprise-splot nil)
(tty-output nil)
cache-env calc-graph-is-splot device output calc-graph-resolution precision samples-pos)
(add-hook 'kill-emacs-hook 'calc-graph-kill-hook)
(save-excursion
(calc-graph-init)
(set-buffer tempbuf)
(erase-buffer)
(set-buffer calc-gnuplot-input)
(goto-char (point-min))
(setq calc-graph-is-splot (re-search-forward "^splot[ \t]" nil t))
(let ((str (buffer-string))
(ver calc-gnuplot-version))
(set-buffer (get-buffer-create "*Gnuplot Temp*"))
(erase-buffer)
(insert "# (Note: This is a temporary copy---do not edit!)\n")
(if (>= ver 2)
(insert "set noarrow\nset nolabel\n"
"set autoscale xy\nset nologscale xy\n"
"set xlabel\nset ylabel\nset title\n"
"set noclip points\nset clip one\nset clip two\n"
"set format \"%g\"\nset tics\nset xtics\nset ytics\n"
"set style data linespoints\n"
"set nogrid\nset nokey\nset nopolar\n"))
(if (>= ver 3)
(insert "set surface\nset nocontour\n"
"set " (if calc-graph-is-splot "" "no") "parametric\n"
"set notimestamp\nset border\nset ztics\nset zeroaxis\n"
"set view 60,30,1,1\nset offsets 0,0,0,0\n"))
(setq samples-pos (point))
(insert "\n\n" str))
(goto-char (point-min))
(if calc-graph-is-splot
(if calc-graph-refine
(error "This option works only for 2d plots")
(setq recompute t)))
(let ((calc-gnuplot-input (current-buffer))
(calc-graph-no-auto-view t))
(if printing
(setq device calc-gnuplot-print-device
output calc-gnuplot-print-output)
(setq device (calc-graph-find-command "terminal")
output (calc-graph-find-command "output"))
(or device
(setq device calc-gnuplot-default-device))
(if output
(setq output (car (read-from-string output)))
(setq output calc-gnuplot-default-output)))
(if (or (equal device "") (equal device "default"))
(setq device
(cond
(printing "postscript")
;; Check MS-Windows before X, in case they have
;; $DISPLAY set for some reason (e.g., Cygwin or
;; whatever)
((string= calc-gnuplot-name "pgnuplot")
"windows")
;; Versions of gnuplot that come without pgnuplot
;; only work on MS-Windows with "qt" as the
;; terminal, for some reason.
((calc-graph-w32-p)
"qt")
((or (eq window-system 'x) (getenv "DISPLAY"))
"x11")
((>= calc-gnuplot-version 3)
"dumb")
(t "postscript"))))
(unless (equal device calc-graph-last-device)
(setq calc-graph-last-device device)
(unless (calc-gnuplot-command "set terminal" device)
;; If gnuplot doesn't support the terminal, then set it
;; to "dumb".
(calc-gnuplot-command "set terminal dumb")
(setq device "dumb")))
(if (equal device "dumb")
(setq device (format "dumb %d %d"
(1- (frame-width)) (1- (frame-height)))))
(if (equal device "big")
(setq device (format "dumb %d %d"
(* 4 (- (frame-width) 3))
(* 4 (- (frame-height) 3)))))
(if (stringp output)
(if (or (equal output "auto")
(and (equal output "tty") (setq tty-output t)))
(setq tempoutfile (calc-temp-file-name -1)
output tempoutfile))
(setq output (eval output t)))
(or (equal output calc-graph-last-output)
(progn
(setq calc-graph-last-output output)
(calc-gnuplot-command "set output"
(if (equal output "STDOUT")
""
(prin1-to-string output)))))
(setq calc-graph-resolution (calc-graph-find-command "samples"))
(if calc-graph-resolution
(setq calc-graph-resolution (string-to-number calc-graph-resolution))
(setq calc-graph-resolution (if calc-graph-is-splot
calc-graph-default-resolution-3d
calc-graph-default-resolution)))
(setq precision (calc-graph-find-command "precision"))
(if precision
(setq precision (string-to-number precision))
(setq precision calc-graph-default-precision))
(calc-graph-set-command "terminal")
(calc-graph-set-command "output")
(calc-graph-set-command "samples")
(calc-graph-set-command "precision"))
(goto-char samples-pos)
(insert "set samples " (int-to-string (max (if calc-graph-is-splot 20 200)
(+ 5 calc-graph-resolution))) "\n")
(while (re-search-forward "{\\*[^}]+}[^,\n]*" nil t)
(delete-region (match-beginning 0) (match-end 0))
(if (looking-at ",")
(delete-char 1)
(while (memq (preceding-char) '(?\s ?\t))
(forward-char -1))
(if (eq (preceding-char) ?\,)
(delete-char -1))))
(with-current-buffer calcbuf
(setq cache-env (list calc-angle-mode
calc-complex-mode
calc-simplify-mode
calc-infinite-mode
calc-word-size
precision calc-graph-is-splot))
(if (and (not recompute)
(equal (cdr (car calc-graph-data-cache)) cache-env))
(while (> (length calc-graph-data-cache)
calc-graph-data-cache-limit)
(setcdr calc-graph-data-cache
(cdr (cdr calc-graph-data-cache))))
(setq calc-graph-data-cache (list (cons nil cache-env)))))
(calc-graph-find-plot t t)
(while (re-search-forward
(if calc-graph-is-splot
"{\\([^{}:\n]+\\):\\([^{}:\n]+\\):\\([^{}:\n]+\\)}"
"{\\([^{}:\n]+\\)\\(:\\)\\([^{}:\n]+\\)}")
nil t)
(setq calc-graph-curve-num (1+ calc-graph-curve-num))
(let* ((calc-graph-xname (buffer-substring (match-beginning 1) (match-end 1)))
(xvar (intern (concat "var-" calc-graph-xname)))
(calc-graph-xvalue (math-evaluate-expr (calc-var-value xvar)))
(calc-graph-y3name (and calc-graph-is-splot
(buffer-substring (match-beginning 2)
(match-end 2))))
(y3var (and calc-graph-is-splot (intern (concat "var-" calc-graph-y3name))))
(calc-graph-y3value (and calc-graph-is-splot (calc-var-value y3var)))
(calc-graph-yname (buffer-substring (match-beginning 3) (match-end 3)))
(yvar (intern (concat "var-" calc-graph-yname)))
(calc-graph-yvalue (calc-var-value yvar))
filename)
(delete-region (match-beginning 0) (match-end 0))
(setq filename (calc-temp-file-name calc-graph-curve-num))
(with-current-buffer calcbuf
(let (tempbuftop
(calc-graph-xp calc-graph-xvalue)
(calc-graph-yp calc-graph-yvalue)
(calc-graph-zp nil)
(calc-graph-xlow nil) (calc-graph-xhigh nil)
;; (y3low nil) (y3high nil)
calc-graph-xvec calc-graph-xval calc-graph-xstep var-DUMMY
;; y3val
calc-graph-y3step var-DUMMY2 (calc-graph-zval nil)
calc-graph-yvec calc-graph-yval calc-graph-ycache calc-graph-ycacheptr calc-graph-yvector
calc-graph-numsteps calc-graph-numsteps3
(calc-graph-keep-file (and (not calc-graph-is-splot) (file-exists-p filename)))
(calc-graph-stepcount 0)
(calc-symbolic-mode nil)
(calc-prefer-frac nil)
(calc-internal-prec (max 3 precision))
(calc-simplify-mode (and (not (memq calc-simplify-mode
'(none num)))
calc-simplify-mode))
(calc-graph-blank t)
(calc-graph-non-blank nil)
(math-working-step 0)
(math-working-step-2 nil))
(save-excursion
(if calc-graph-is-splot
(calc-graph-compute-3d)
(calc-graph-compute-2d))
(set-buffer tempbuf)
(goto-char (point-max))
(insert "\n" calc-graph-xname)
(if calc-graph-is-splot
(insert ":" calc-graph-y3name))
(insert ":" calc-graph-yname "\n\n")
(setq tempbuftop (point))
(let ((calc-group-digits nil)
(calc-leading-zeros nil)
(calc-number-radix 10)
(calc-twos-complement-mode nil)
(entry (and (not calc-graph-is-splot)
(list calc-graph-xp calc-graph-yp calc-graph-xhigh calc-graph-numsteps))))
(or (equal entry
(nth 1 (nth (1+ calc-graph-curve-num)
calc-graph-file-cache)))
(setq calc-graph-keep-file nil))
(setcar (cdr (nth (1+ calc-graph-curve-num) calc-graph-file-cache))
entry)
(or calc-graph-keep-file
(calc-graph-format-data)))
(or calc-graph-keep-file
(progn
(or calc-graph-non-blank
(error "No valid data points for %s:%s"
calc-graph-xname calc-graph-yname))
(write-region tempbuftop (point-max) filename
nil 'quiet))))))
(insert (prin1-to-string filename))))
(if calc-graph-surprise-splot
(setcdr cache-env nil))
(if (= calc-graph-curve-num 0)
(progn
(calc-gnuplot-command "clear")
(calc-clear-command-flag 'clear-message)
(message "No data to plot!"))
(setq calc-graph-data-cache-limit (max calc-graph-curve-num
calc-graph-data-cache-limit))
(let ((filename (calc-temp-file-name 0)))
(write-region (point-min) (point-max) filename nil 'quiet)
(calc-gnuplot-command "load" (prin1-to-string filename)))
(or (equal output "STDOUT")
calc-gnuplot-keep-outfile
(progn ; need to close the output file before printing/plotting
(setq calc-graph-last-output "STDOUT")
(calc-gnuplot-command "set output")))
(let ((command (if printing
calc-gnuplot-print-command
(or calc-gnuplot-plot-command
(and (string-match "^dumb" device)
'calc-graph-show-dumb)
(and tty-output
'calc-graph-show-tty)))))
(if command
(if (stringp command)
(calc-gnuplot-command
"!" (format command
(or tempoutfile
calc-gnuplot-print-output)))
(if (symbolp command)
(funcall command output)
(eval command t))))))))))
(defun calc-graph-compute-2d ()
(if (setq calc-graph-yvec (eq (car-safe calc-graph-yvalue) 'vec))
(if (= (setq calc-graph-numsteps (1- (length calc-graph-yvalue))) 0)
(error "Can't plot an empty vector")
(if (setq calc-graph-xvec (eq (car-safe calc-graph-xvalue) 'vec))
(or (= (1- (length calc-graph-xvalue)) calc-graph-numsteps)
(error "%s and %s have different lengths" calc-graph-xname calc-graph-yname))
(if (and (eq (car-safe calc-graph-xvalue) 'intv)
(math-constp calc-graph-xvalue))
(setq calc-graph-xstep (math-div (math-sub (nth 3 calc-graph-xvalue)
(nth 2 calc-graph-xvalue))
(1- calc-graph-numsteps))
calc-graph-xvalue (nth 2 calc-graph-xvalue))
(if (math-realp calc-graph-xvalue)
(setq calc-graph-xstep 1)
(error "%s is not a suitable basis for %s" calc-graph-xname calc-graph-yname)))))
(or (math-realp calc-graph-yvalue)
(let ((math-arglist nil))
(setq calc-graph-yvalue (math-evaluate-expr calc-graph-yvalue))
(calc-default-formula-arglist calc-graph-yvalue)
(or math-arglist
(error "%s does not contain any unassigned variables" calc-graph-yname))
(and (cdr math-arglist)
(error "%s contains more than one variable: %s"
calc-graph-yname math-arglist))
(setq calc-graph-yvalue (math-expr-subst calc-graph-yvalue
(math-build-var-name (car math-arglist))
'(var DUMMY var-DUMMY)))))
(setq calc-graph-ycache (assoc calc-graph-yvalue calc-graph-data-cache))
(setq calc-graph-data-cache
(nconc (delq calc-graph-ycache calc-graph-data-cache)
(list (or calc-graph-ycache
(setq calc-graph-ycache (list calc-graph-yvalue))))))
(if (and (not (setq calc-graph-xvec (eq (car-safe calc-graph-xvalue) 'vec)))
calc-graph-refine (cdr (cdr calc-graph-ycache)))
(calc-graph-refine-2d)
(calc-graph-recompute-2d))))
(defun calc-graph-refine-2d ()
(setq calc-graph-keep-file nil
calc-graph-ycacheptr (cdr calc-graph-ycache))
(if (and (setq calc-graph-xval (calc-graph-find-command "xrange"))
(string-match "\\`\\[\\([0-9.eE+-]*\\):\\([0-9.eE+-]*\\)\\]\\'"
calc-graph-xval))
(let ((b2 (match-beginning 2))
(e2 (match-end 2)))
(setq calc-graph-xlow (math-read-number (substring calc-graph-xval
(match-beginning 1)
(match-end 1)))
calc-graph-xhigh (math-read-number (substring calc-graph-xval b2 e2))))
(if calc-graph-xlow
(while (and (cdr calc-graph-ycacheptr)
(Math-lessp (car (nth 1 calc-graph-ycacheptr)) calc-graph-xlow))
(setq calc-graph-ycacheptr (cdr calc-graph-ycacheptr)))))
(setq math-working-step-2 (1- (length calc-graph-ycacheptr)))
(while (and (cdr calc-graph-ycacheptr)
(or (not calc-graph-xhigh)
(Math-lessp (car (car calc-graph-ycacheptr)) calc-graph-xhigh)))
(setq var-DUMMY (math-div (math-add (car (car calc-graph-ycacheptr))
(car (nth 1 calc-graph-ycacheptr)))
2)
math-working-step (1+ math-working-step)
calc-graph-yval (math-evaluate-expr calc-graph-yvalue))
(setcdr calc-graph-ycacheptr (cons (cons var-DUMMY calc-graph-yval)
(cdr calc-graph-ycacheptr)))
(setq calc-graph-ycacheptr (cdr (cdr calc-graph-ycacheptr))))
(setq calc-graph-yp calc-graph-ycache
calc-graph-numsteps 1000000))
(defun calc-graph-recompute-2d ()
(setq calc-graph-ycacheptr calc-graph-ycache)
(if calc-graph-xvec
(setq calc-graph-numsteps (1- (length calc-graph-xvalue))
calc-graph-yvector nil)
(if (and (eq (car-safe calc-graph-xvalue) 'intv)
(math-constp calc-graph-xvalue))
(setq calc-graph-numsteps calc-graph-resolution
calc-graph-yp nil
calc-graph-xlow (nth 2 calc-graph-xvalue)
calc-graph-xhigh (nth 3 calc-graph-xvalue)
calc-graph-xstep (math-div (math-sub calc-graph-xhigh calc-graph-xlow)
(1- calc-graph-numsteps))
calc-graph-xvalue (nth 2 calc-graph-xvalue))
(error "%s is not a suitable basis for %s"
calc-graph-xname calc-graph-yname)))
(setq math-working-step-2 calc-graph-numsteps)
(while (>= (setq calc-graph-numsteps (1- calc-graph-numsteps)) 0)
(setq math-working-step (1+ math-working-step))
(if calc-graph-xvec
(progn
(setq calc-graph-xp (cdr calc-graph-xp)
calc-graph-xval (car calc-graph-xp))
(and (not (eq calc-graph-ycacheptr calc-graph-ycache))
(consp (car calc-graph-ycacheptr))
(not (Math-lessp (car (car calc-graph-ycacheptr)) calc-graph-xval))
(setq calc-graph-ycacheptr calc-graph-ycache)))
(if (= calc-graph-numsteps 0)
(setq calc-graph-xval calc-graph-xhigh) ; avoid cumulative roundoff
(setq calc-graph-xval calc-graph-xvalue
calc-graph-xvalue (math-add calc-graph-xvalue calc-graph-xstep))))
(while (and (cdr calc-graph-ycacheptr)
(Math-lessp (car (nth 1 calc-graph-ycacheptr)) calc-graph-xval))
(setq calc-graph-ycacheptr (cdr calc-graph-ycacheptr)))
(or (and (cdr calc-graph-ycacheptr)
(Math-equal (car (nth 1 calc-graph-ycacheptr)) calc-graph-xval))
(progn
(setq calc-graph-keep-file nil
var-DUMMY calc-graph-xval)
(setcdr calc-graph-ycacheptr (cons (cons calc-graph-xval (math-evaluate-expr calc-graph-yvalue))
(cdr calc-graph-ycacheptr)))))
(setq calc-graph-ycacheptr (cdr calc-graph-ycacheptr))
(if calc-graph-xvec
(setq calc-graph-yvector (cons (cdr (car calc-graph-ycacheptr)) calc-graph-yvector))
(or calc-graph-yp (setq calc-graph-yp calc-graph-ycacheptr))))
(if calc-graph-xvec
(setq calc-graph-xp calc-graph-xvalue
calc-graph-yvec t
calc-graph-yp (cons 'vec (nreverse calc-graph-yvector))
calc-graph-numsteps (1- (length calc-graph-xp)))
(setq calc-graph-numsteps 1000000)))
(defun calc-graph-compute-3d ()
(if (setq calc-graph-yvec (eq (car-safe calc-graph-yvalue) 'vec))
(if (math-matrixp calc-graph-yvalue)
(progn
(setq calc-graph-numsteps (1- (length calc-graph-yvalue))
calc-graph-numsteps3 (1- (length (nth 1 calc-graph-yvalue))))
(if (eq (car-safe calc-graph-xvalue) 'vec)
(or (= (1- (length calc-graph-xvalue)) calc-graph-numsteps)
(error "%s has wrong length" calc-graph-xname))
(if (and (eq (car-safe calc-graph-xvalue) 'intv)
(math-constp calc-graph-xvalue))
(setq calc-graph-xvalue (calcFunc-index calc-graph-numsteps
(nth 2 calc-graph-xvalue)
(math-div
(math-sub (nth 3 calc-graph-xvalue)
(nth 2 calc-graph-xvalue))
(1- calc-graph-numsteps))))
(if (math-realp calc-graph-xvalue)
(setq calc-graph-xvalue (calcFunc-index calc-graph-numsteps calc-graph-xvalue 1))
(error "%s is not a suitable basis for %s" calc-graph-xname calc-graph-yname))))
(if (eq (car-safe calc-graph-y3value) 'vec)
(or (= (1- (length calc-graph-y3value)) calc-graph-numsteps3)
(error "%s has wrong length" calc-graph-y3name))
(if (and (eq (car-safe calc-graph-y3value) 'intv)
(math-constp calc-graph-y3value))
(setq calc-graph-y3value (calcFunc-index calc-graph-numsteps3
(nth 2 calc-graph-y3value)
(math-div
(math-sub (nth 3 calc-graph-y3value)
(nth 2 calc-graph-y3value))
(1- calc-graph-numsteps3))))
(if (math-realp calc-graph-y3value)
(setq calc-graph-y3value (calcFunc-index calc-graph-numsteps3 calc-graph-y3value 1))
(error "%s is not a suitable basis for %s" calc-graph-y3name calc-graph-yname))))
(setq calc-graph-xp nil
calc-graph-yp nil
calc-graph-zp nil
calc-graph-xvec t)
(while (setq calc-graph-xvalue (cdr calc-graph-xvalue) calc-graph-yvalue (cdr calc-graph-yvalue))
(setq calc-graph-xp (nconc calc-graph-xp (make-list (1+ calc-graph-numsteps3) (car calc-graph-xvalue)))
calc-graph-yp (nconc calc-graph-yp (cons 0 (copy-sequence (cdr calc-graph-y3value))))
calc-graph-zp (nconc calc-graph-zp (cons '(skip)
(copy-sequence (cdr (car calc-graph-yvalue)))))))
(setq calc-graph-numsteps (1- (* calc-graph-numsteps
(1+ calc-graph-numsteps3)))))
(if (= (setq calc-graph-numsteps (1- (length calc-graph-yvalue))) 0)
(error "Can't plot an empty vector"))
(or (and (eq (car-safe calc-graph-xvalue) 'vec)
(= (1- (length calc-graph-xvalue)) calc-graph-numsteps))
(error "%s is not a suitable basis for %s" calc-graph-xname calc-graph-yname))
(or (and (eq (car-safe calc-graph-y3value) 'vec)
(= (1- (length calc-graph-y3value)) calc-graph-numsteps))
(error "%s is not a suitable basis for %s" calc-graph-y3name calc-graph-yname))
(setq calc-graph-xp calc-graph-xvalue
calc-graph-yp calc-graph-y3value
calc-graph-zp calc-graph-yvalue
calc-graph-xvec t))
(or (math-realp calc-graph-yvalue)
(let ((math-arglist nil))
(setq calc-graph-yvalue (math-evaluate-expr calc-graph-yvalue))
(calc-default-formula-arglist calc-graph-yvalue)
(setq math-arglist (sort math-arglist 'string-lessp))
(or (cdr math-arglist)
(error "%s does not contain enough unassigned variables" calc-graph-yname))
(and (cdr (cdr math-arglist))
(error "%s contains too many variables: %s" calc-graph-yname math-arglist))
(setq calc-graph-yvalue (math-multi-subst calc-graph-yvalue
(mapcar 'math-build-var-name
math-arglist)
'((var DUMMY var-DUMMY)
(var DUMMY2 var-DUMMY2))))))
(if (setq calc-graph-xvec (eq (car-safe calc-graph-xvalue) 'vec))
(setq calc-graph-numsteps (1- (length calc-graph-xvalue)))
(if (and (eq (car-safe calc-graph-xvalue) 'intv)
(math-constp calc-graph-xvalue))
(setq calc-graph-numsteps calc-graph-resolution
calc-graph-xvalue (calcFunc-index calc-graph-numsteps
(nth 2 calc-graph-xvalue)
(math-div (math-sub (nth 3 calc-graph-xvalue)
(nth 2 calc-graph-xvalue))
(1- calc-graph-numsteps))))
(error "%s is not a suitable basis for %s"
calc-graph-xname calc-graph-yname)))
(if (eq (car-safe calc-graph-y3value) 'vec)
(setq calc-graph-numsteps3 (1- (length calc-graph-y3value)))
(if (and (eq (car-safe calc-graph-y3value) 'intv)
(math-constp calc-graph-y3value))
(setq calc-graph-numsteps3 calc-graph-resolution
calc-graph-y3value (calcFunc-index calc-graph-numsteps3
(nth 2 calc-graph-y3value)
(math-div (math-sub (nth 3 calc-graph-y3value)
(nth 2 calc-graph-y3value))
(1- calc-graph-numsteps3))))
(error "%s is not a suitable basis for %s"
calc-graph-y3name calc-graph-yname)))
(setq calc-graph-xp nil
calc-graph-yp nil
calc-graph-zp nil
calc-graph-xvec t)
(setq math-working-step 0)
(while (setq calc-graph-xvalue (cdr calc-graph-xvalue))
(setq calc-graph-xp (nconc calc-graph-xp (make-list (1+ calc-graph-numsteps3) (car calc-graph-xvalue)))
calc-graph-yp (nconc calc-graph-yp (cons 0 (copy-sequence (cdr calc-graph-y3value))))
calc-graph-zp (cons '(skip) calc-graph-zp)
calc-graph-y3step calc-graph-y3value
var-DUMMY (car calc-graph-xvalue)
math-working-step-2 0
math-working-step (1+ math-working-step))
(while (setq calc-graph-y3step (cdr calc-graph-y3step))
(setq math-working-step-2 (1+ math-working-step-2)
var-DUMMY2 (car calc-graph-y3step)
calc-graph-zp (cons (math-evaluate-expr calc-graph-yvalue) calc-graph-zp))))
(setq calc-graph-zp (nreverse calc-graph-zp)
calc-graph-numsteps (1- (* calc-graph-numsteps (1+ calc-graph-numsteps3))))))
(defun calc-graph-format-data ()
(if (math-contains-sdev-p calc-graph-yp)
(let ((yp calc-graph-yp))
(setq calc-graph-yp (cons 'vec (mapcar 'math-get-value (cdr yp))))
(setq calc-graph-zp (cons 'vec (mapcar 'math-get-sdev (cdr yp))))))
(while (<= (setq calc-graph-stepcount (1+ calc-graph-stepcount)) calc-graph-numsteps)
(if calc-graph-xvec
(setq calc-graph-xp (cdr calc-graph-xp)
calc-graph-xval (car calc-graph-xp)
calc-graph-yp (cdr calc-graph-yp)
calc-graph-yval (car calc-graph-yp)
calc-graph-zp (cdr calc-graph-zp)
calc-graph-zval (car calc-graph-zp))
(if calc-graph-yvec
(setq calc-graph-xval calc-graph-xvalue
calc-graph-xvalue (math-add calc-graph-xvalue calc-graph-xstep)
calc-graph-yp (cdr calc-graph-yp)
calc-graph-yval (car calc-graph-yp))
(setq calc-graph-xval (car (car calc-graph-yp))
calc-graph-yval (cdr (car calc-graph-yp))
calc-graph-yp (cdr calc-graph-yp))
(if (or (not calc-graph-yp)
(and calc-graph-xhigh (equal calc-graph-xval calc-graph-xhigh)))
(setq calc-graph-numsteps 0))))
(if calc-graph-is-splot
(if (and (eq (car-safe calc-graph-zval) 'calcFunc-xyz)
(= (length calc-graph-zval) 4))
(setq calc-graph-xval (nth 1 calc-graph-zval)
calc-graph-yval (nth 2 calc-graph-zval)
calc-graph-zval (nth 3 calc-graph-zval)))
(if (and (eq (car-safe calc-graph-yval) 'calcFunc-xyz)
(= (length calc-graph-yval) 4))
(progn
(or calc-graph-surprise-splot
(with-current-buffer (get-buffer-create "*Gnuplot Temp*")
(save-excursion
(goto-char (point-max))
(re-search-backward "^plot[ \t]")
(insert "set parametric\ns")
(setq calc-graph-surprise-splot t))))
(setq calc-graph-xval (nth 1 calc-graph-yval)
calc-graph-zval (nth 3 calc-graph-yval)
calc-graph-yval (nth 2 calc-graph-yval)))
(if (and (eq (car-safe calc-graph-yval) 'calcFunc-xy)
(= (length calc-graph-yval) 3))
(setq calc-graph-xval (nth 1 calc-graph-yval)
calc-graph-yval (nth 2 calc-graph-yval)))))
(if (and (Math-realp calc-graph-xval)
(Math-realp calc-graph-yval)
(or (not calc-graph-zval) (Math-realp calc-graph-zval)))
(progn
(setq calc-graph-blank nil
calc-graph-non-blank t)
(if (Math-integerp calc-graph-xval)
(insert (math-format-number calc-graph-xval))
(if (eq (car calc-graph-xval) 'frac)
(setq calc-graph-xval (math-float calc-graph-xval)))
(insert (math-format-number (nth 1 calc-graph-xval))
"e" (int-to-string (nth 2 calc-graph-xval))))
(insert " ")
(if (Math-integerp calc-graph-yval)
(insert (math-format-number calc-graph-yval))
(if (eq (car calc-graph-yval) 'frac)
(setq calc-graph-yval (math-float calc-graph-yval)))
(insert (math-format-number (nth 1 calc-graph-yval))
"e" (int-to-string (nth 2 calc-graph-yval))))
(if calc-graph-zval
(progn
(insert " ")
(if (Math-integerp calc-graph-zval)
(insert (math-format-number calc-graph-zval))
(if (eq (car calc-graph-zval) 'frac)
(setq calc-graph-zval (math-float calc-graph-zval)))
(insert (math-format-number (nth 1 calc-graph-zval))
"e" (int-to-string (nth 2 calc-graph-zval))))))
(insert "\n"))
(and (not (equal calc-graph-zval '(skip)))
(boundp 'var-PlotRejects)
(eq (car-safe var-PlotRejects) 'vec)
(nconc var-PlotRejects
(list (list 'vec
calc-graph-curve-num
calc-graph-stepcount
calc-graph-xval calc-graph-yval)))
(calc-refresh-evaltos 'var-PlotRejects))
(or calc-graph-blank
(progn
(insert "\n")
(setq calc-graph-blank t))))))
(defun calc-temp-file-name (num)
(while (<= (length calc-graph-file-cache) (1+ num))
(setq calc-graph-file-cache (nconc calc-graph-file-cache (list nil))))
(car (or (nth (1+ num) calc-graph-file-cache)
(setcar (nthcdr (1+ num) calc-graph-file-cache)
(list (make-temp-file
(concat calc-gnuplot-tempfile
(if (<= num 0)
(char-to-string (- ?A num))
(int-to-string num))))
nil)))))
(defun calc-graph-delete-temps ()
(while calc-graph-file-cache
(and (car calc-graph-file-cache)
(file-exists-p (car (car calc-graph-file-cache)))
(ignore-errors
(delete-file (car (car calc-graph-file-cache)))))
(setq calc-graph-file-cache (cdr calc-graph-file-cache))))
(defun calc-graph-kill-hook ()
(calc-graph-delete-temps))
(defun calc-graph-show-tty (output)
"Default `calc-gnuplot-plot-command' for \"tty\" output mode.
This is useful for tek40xx and other graphics-terminal types."
(call-process shell-file-name nil calc-gnuplot-buffer nil
shell-command-switch
(format "cat %s >/dev/tty; rm %s" output output)))
(defvar calc-dumb-map nil
"The keymap for the \"dumb\" terminal plot.")
(defun calc-graph-show-dumb (&optional _output)
"Default calc-gnuplot-plot-command for Pinard's \"dumb\" terminal type.
This \"dumb\" driver will be present in Gnuplot 3.0."
(interactive)
(save-window-excursion
(switch-to-buffer calc-gnuplot-buffer)
(delete-other-windows)
(goto-char calc-gnuplot-trail-mark)
(or (search-forward "\f" nil t)
(sleep-for 1))
(goto-char (point-max))
(re-search-backward "\f\\|^[ \t]+\\^$\\|G N U P L O T")
(if (looking-at "\f")
(progn
(forward-char 1)
(if (eolp) (forward-line 1))
(or (calc-graph-find-command "time")
(calc-graph-find-command "title")
(calc-graph-find-command "ylabel")
(let ((pt (point)))
(insert-before-markers (format "(%s)" (current-time-string)))
(goto-char pt)))
(set-window-start (selected-window) (point))
(goto-char (point-max)))
(end-of-line)
(backward-char 1)
(recenter '(4)))
(or calc-dumb-map
(progn
(setq calc-dumb-map (make-sparse-keymap))
(define-key calc-dumb-map "\n" 'scroll-up-command)
(define-key calc-dumb-map " " 'scroll-up-command)
(define-key calc-dumb-map [?\S-\ ] 'scroll-down-command)
(define-key calc-dumb-map "\177" 'scroll-down-command)
(define-key calc-dumb-map "<" 'scroll-left)
(define-key calc-dumb-map ">" 'scroll-right)
(define-key calc-dumb-map "{" 'scroll-down-command)
(define-key calc-dumb-map "}" 'scroll-up-command)
(define-key calc-dumb-map "q" 'exit-recursive-edit)
(define-key calc-dumb-map "\C-c\C-c" 'exit-recursive-edit)))
(use-local-map calc-dumb-map)
(setq truncate-lines t)
(message (substitute-command-keys
"Type \\`q' or \\`C-c C-c' to return to Calc"))
(recursive-edit)
(bury-buffer "*Gnuplot Trail*")))
(defun calc-graph-clear ()
(interactive)
(if calc-graph-last-device
(if (or (equal calc-graph-last-device "x11")
(equal calc-graph-last-device "X11"))
(calc-gnuplot-command "set output"
(if (equal calc-graph-last-output "STDOUT")
""
(prin1-to-string calc-graph-last-output)))
(calc-gnuplot-command "clear"))))
(defun calc-graph-title-x (title)
(interactive "sX axis title: ")
(calc-graph-set-command "xlabel" (if (not (equal title ""))
(prin1-to-string title))))
(defun calc-graph-title-y (title)
(interactive "sY axis title: ")
(calc-graph-set-command "ylabel" (if (not (equal title ""))
(prin1-to-string title))))
(defun calc-graph-title-z (title)
(interactive "sZ axis title: ")
(calc-graph-set-command "zlabel" (if (not (equal title ""))
(prin1-to-string title))))
(defun calc-graph-range-x (range)
(interactive "sX axis range: ")
(calc-graph-set-range "xrange" range))
(defun calc-graph-range-y (range)
(interactive "sY axis range: ")
(calc-graph-set-range "yrange" range))
(defun calc-graph-range-z (range)
(interactive "sZ axis range: ")
(calc-graph-set-range "zrange" range))
(defun calc-graph-set-range (cmd range)
(if (equal range "$")
(calc-wrapper
(let ((val (calc-top-n 1)))
(if (and (eq (car-safe val) 'intv) (math-constp val))
(setq range (concat
(math-format-number (math-float (nth 2 val))) ":"
(math-format-number (math-float (nth 3 val)))))
(if (and (eq (car-safe val) 'vec)
(= (length val) 3))
(setq range (concat
(math-format-number (math-float (nth 1 val))) ":"
(math-format-number (math-float (nth 2 val)))))
(error "Range specification must be an interval or 2-vector")))
(calc-pop-stack 1))))
(if (string-match "\\[.+\\]" range)
(setq range (substring range 1 -1)))
(if (and (not (string-search ":" range))
(or (string-match "," range)
(string-match " " range)))
(aset range (match-beginning 0) ?\:))
(calc-graph-set-command cmd (if (not (equal range ""))
(concat "[" range "]"))))
(defun calc-graph-log-x (flag)
(interactive "P")
(calc-graph-set-log flag 0 0))
(defun calc-graph-log-y (flag)
(interactive "P")
(calc-graph-set-log 0 flag 0))
(defun calc-graph-log-z (flag)
(interactive "P")
(calc-graph-set-log 0 0 flag))
(defun calc-graph-set-log (xflag yflag zflag)
(let* ((old (or (calc-graph-find-command "logscale") ""))
(xold (string-match "x" old))
(yold (string-match "y" old))
(zold (string-match "z" old))
str)
(setq str (concat (if (if xflag
(if (eq xflag 0) xold
(> (prefix-numeric-value xflag) 0))
(not xold)) "x" "")
(if (if yflag
(if (eq yflag 0) yold
(> (prefix-numeric-value yflag) 0))
(not yold)) "y" "")
(if (if zflag
(if (eq zflag 0) zold
(> (prefix-numeric-value zflag) 0))
(not zold)) "z" "")))
(calc-graph-set-command "logscale" (if (not (equal str "")) str))))
(defun calc-graph-line-style (style)
(interactive "P")
(calc-graph-set-styles (and style (prefix-numeric-value style)) t))
(defun calc-graph-point-style (style)
(interactive "P")
(calc-graph-set-styles t (and style (prefix-numeric-value style))))
(defun calc-graph-set-styles (lines points &optional yerr)
(calc-graph-init)
(with-current-buffer calc-gnuplot-input
(or (calc-graph-find-plot nil nil)
(error "No data points have been set!"))
(let ((base (point))
(mode nil) (lstyle nil) (pstyle nil)
start end lenbl penbl errform)
(re-search-forward "[,\n]")
(forward-char -1)
(setq end (point) start end)
(goto-char base)
(if (looking-at "[^,\n]*[^,\n \t]\\([ \t]+with\\)")
(progn
(setq start (match-beginning 1))
(goto-char (match-end 0))
(if (looking-at "[ \t]+\\([a-z]+\\)")
(setq mode (buffer-substring (match-beginning 1)
(match-end 1))))
(if (looking-at "[ \ta-z]+\\([0-9]+\\)")
(setq lstyle (string-to-number
(buffer-substring (match-beginning 1)
(match-end 1)))))
(if (looking-at "[ \ta-z]+[0-9]+[ \t]+\\([0-9]+\\)")
(setq pstyle (string-to-number
(buffer-substring (match-beginning 1)
(match-end 1)))))))
(unless yerr
(setq lenbl (or (equal mode "lines")
(equal mode "linespoints"))
penbl (or (equal mode "points")
(equal mode "linespoints")))
(if lines
(or (eq lines t)
(setq lstyle lines
lenbl (>= lines 0)))
(setq lenbl (not lenbl)))
(if points
(or (eq points t)
(setq pstyle points
penbl (>= points 0)))
(setq penbl (not penbl))))
(delete-region start end)
(goto-char start)
(setq errform
(ignore-errors
(math-contains-sdev-p
(symbol-value
(intern
(concat "var-"
(save-excursion
(re-search-backward ":\\(.*\\)}")
(match-string 1))))))))
(if yerr
(insert " with yerrorbars")
(insert " with "
(if (and errform
(equal mode "dots")
(eq lines t))
"yerrorbars"
(if lenbl
(if penbl "linespoints" "lines")
(if penbl "points" "dots"))))
(if (and pstyle (> pstyle 0))
(insert " ls "
(if (and lstyle (> lstyle 0)) (int-to-string lstyle) "1")
" ps " (int-to-string pstyle))
(if (and lstyle (> lstyle 0))
(insert " ls " (int-to-string lstyle)))))))
(calc-graph-view-commands))
(defun calc-graph-zero-x (flag)
(interactive "P")
(calc-graph-set-command "noxzeroaxis"
(and (if flag
(<= (prefix-numeric-value flag) 0)
(not (calc-graph-find-command "noxzeroaxis")))
" ")))
(defun calc-graph-zero-y (flag)
(interactive "P")
(calc-graph-set-command "noyzeroaxis"
(and (if flag
(<= (prefix-numeric-value flag) 0)
(not (calc-graph-find-command "noyzeroaxis")))
" ")))
(defun calc-graph-name (name)
(interactive "sTitle for current curve: ")
(calc-graph-init)
(with-current-buffer calc-gnuplot-input
(or (calc-graph-find-plot nil nil)
(error "No data points have been set!"))
(let ((base (point))
;; start
end)
(re-search-forward "[,\n]\\|[ \t]+with")
(setq end (match-beginning 0))
(goto-char base)
(if (looking-at "[^,\n]*[^,\n \t]\\([ \t]+title\\)")
(progn
(goto-char (match-beginning 1))
(delete-region (point) end))
(goto-char end))
(insert " title " (prin1-to-string name))))
(calc-graph-view-commands))
(defun calc-graph-hide (flag)
(interactive "P")
(calc-graph-init)
(and (calc-graph-find-plot nil nil)
(progn
(or (looking-at "{")
(error "Can't hide this curve (wrong format)"))
(forward-char 1)
(if (looking-at "\\*")
(if (or (null flag) (<= (prefix-numeric-value flag) 0))
(delete-char 1))
(if (or (null flag) (> (prefix-numeric-value flag) 0))
(insert "*"))))))
(defun calc-graph-header (title)
(interactive "sTitle for entire graph: ")
(calc-graph-set-command "title" (if (not (equal title ""))
(prin1-to-string title))))
(defun calc-graph-border (flag)
(interactive "P")
(calc-graph-set-command "noborder"
(and (if flag
(<= (prefix-numeric-value flag) 0)
(not (calc-graph-find-command "noborder")))
" ")))
(defun calc-graph-grid (flag)
(interactive "P")
(calc-graph-set-command "grid" (and (if flag
(> (prefix-numeric-value flag) 0)
(not (calc-graph-find-command "grid")))
" ")))
(defun calc-graph-key (flag)
(interactive "P")
(calc-graph-set-command "key" (and (if flag
(> (prefix-numeric-value flag) 0)
(not (calc-graph-find-command "key")))
" ")))
(defun calc-graph-num-points (res flag)
(interactive "sNumber of data points: \nP")
(if flag
(if (> (prefix-numeric-value flag) 0)
(if (equal res "")
(message "Default resolution is %d"
calc-graph-default-resolution)
(setq calc-graph-default-resolution (string-to-number res)))
(if (equal res "")
(message "Default 3D resolution is %d"
calc-graph-default-resolution-3d)
(setq calc-graph-default-resolution-3d (string-to-number res))))
(calc-graph-set-command "samples" (if (not (equal res "")) res))))
(defun calc-graph-device (name flag)
(interactive "sDevice name: \nP")
(if (equal name "?")
(progn
(calc-gnuplot-command "set terminal")
(calc-graph-view-trail))
(if flag
(if (> (prefix-numeric-value flag) 0)
(if (equal name "")
(message "Default GNUPLOT device is \"%s\""
calc-gnuplot-default-device)
(setq calc-gnuplot-default-device name))
(if (equal name "")
(message "GNUPLOT device for Print command is \"%s\""
calc-gnuplot-print-device)
(setq calc-gnuplot-print-device name)))
(calc-graph-set-command "terminal" (if (not (equal name ""))
name)))))
(defun calc-graph-output (name flag)
(interactive "FOutput file name: \np")
(cond ((string-match "\\<[aA][uU][tT][oO]$" name)
(setq name "auto"))
((string-match "\\<[tT][tT][yY]$" name)
(setq name "tty"))
((string-match "\\<[sS][tT][dD][oO][uU][tT]$" name)
(setq name "STDOUT"))
((equal (file-name-nondirectory name) "")
(setq name ""))
(t (setq name (expand-file-name name))))
(if flag
(if (> (prefix-numeric-value flag) 0)
(if (equal name "")
(message "Default GNUPLOT output file is \"%s\""
calc-gnuplot-default-output)
(setq calc-gnuplot-default-output name))
(if (equal name "")
(message "GNUPLOT output file for Print command is \"%s\""
calc-gnuplot-print-output)
(setq calc-gnuplot-print-output name)))
(calc-graph-set-command "output" (if (not (equal name ""))
(prin1-to-string name)))))
(defun calc-graph-display (name)
(interactive "sX display name: ")
(if (equal name "")
(message "Current X display is \"%s\""
(or calc-gnuplot-display "<none>"))
(setq calc-gnuplot-display name)
(if (calc-gnuplot-alive)
(calc-gnuplot-command "exit"))))
(defun calc-graph-geometry (name)
(interactive "sX geometry spec (or \"default\"): ")
(if (equal name "")
(message "Current X geometry is \"%s\""
(or calc-gnuplot-geometry "default"))
(setq calc-gnuplot-geometry (and (not (equal name "default")) name))
(if (calc-gnuplot-alive)
(calc-gnuplot-command "exit"))))
(defun calc-graph-find-command (cmd)
(calc-graph-init)
(with-current-buffer calc-gnuplot-input
(goto-char (point-min))
(if (re-search-forward (concat "^set[ \t]+" cmd "[ \t]*\\(.*\\)$") nil t)
(buffer-substring (match-beginning 1) (match-end 1)))))
(defun calc-graph-set-command (cmd &rest args)
(calc-graph-init)
(with-current-buffer calc-gnuplot-input
(goto-char (point-min))
(if (re-search-forward (concat "^set[ \t]+" cmd "[ \t\n]") nil t)
(progn
(forward-char -1)
(end-of-line)
(let ((end (point)))
(beginning-of-line)
(delete-region (point) (1+ end))))
(if (calc-graph-find-plot t t)
(if (eq (preceding-char) ?\n)
(forward-char -1))
(goto-char (1- (point-max)))))
(if (and args (car args))
(progn
(or (bolp)
(insert "\n"))
(insert "set " (mapconcat 'identity (cons cmd args) " ") "\n"))))
(calc-graph-view-commands))
(defun calc-graph-command (cmd)
(interactive "sGNUPLOT command: ")
(calc-wrapper
(calc-graph-init)
(calc-graph-view-trail)
(calc-gnuplot-command cmd)
(or (calc-graph-w32-p)
(progn
(accept-process-output)
(calc-graph-view-trail)))))
(defun calc-graph-kill (&optional no-view)
(interactive)
(if (calc-gnuplot-alive)
(calc-wrapper
(or no-view (calc-graph-view-trail))
(let ((calc-graph-no-wait t))
(calc-gnuplot-command "exit"))
(sit-for 1)
(if (process-status calc-gnuplot-process)
(delete-process calc-gnuplot-process))
(setq calc-gnuplot-process nil)))
(calc-graph-delete-temps))
(defun calc-graph-quit ()
(interactive)
(if (get-buffer-window calc-gnuplot-input)
(calc-graph-view-commands t))
(if (get-buffer-window calc-gnuplot-buffer)
(calc-graph-view-trail t))
(calc-graph-kill t))
(defun calc-graph-view-commands (&optional no-need)
(interactive "p")
(or calc-graph-no-auto-view (calc-graph-init-buffers))
(calc-graph-view calc-gnuplot-input calc-gnuplot-buffer (null no-need)))
(defun calc-graph-view-trail (&optional no-need)
(interactive "p")
(or calc-graph-no-auto-view (calc-graph-init-buffers))
(calc-graph-view calc-gnuplot-buffer calc-gnuplot-input (null no-need)))
(defun calc-graph-view (buf other-buf need)
(let (win)
(or calc-graph-no-auto-view
(if (setq win (get-buffer-window buf))
(or need
(and (eq buf calc-gnuplot-buffer)
(with-current-buffer buf
(not (pos-visible-in-window-p (point-max) win))))
(progn
(bury-buffer buf)
(bury-buffer other-buf)
(let ((curwin (selected-window)))
(select-window win)
(switch-to-buffer nil)
(select-window curwin))))
(if (setq win (get-buffer-window other-buf))
(set-window-buffer win buf)
(if (eq major-mode 'calc-mode)
(if (or need
(not (window-full-height-p)))
(display-buffer buf))
(switch-to-buffer buf)))))
(with-current-buffer buf
(if (and (eq buf calc-gnuplot-buffer)
(setq win (get-buffer-window buf))
(not (pos-visible-in-window-p (point-max) win)))
(progn
(goto-char (point-max))
(vertical-motion (- 6 (window-height win)))
(set-window-start win (point))
(goto-char (point-max)))))
(or calc-graph-no-auto-view (sit-for 0))))
(defun calc-gnuplot-check-for-errors ()
(if (with-current-buffer calc-gnuplot-buffer
(goto-char calc-gnuplot-last-error-pos)
(prog1
(re-search-forward "^[ \t]+\\^$" nil t)
(goto-char (point-max))
(setq calc-gnuplot-last-error-pos (point-max))))
(calc-graph-view-trail)))
(defun calc-gnuplot-command (&rest args)
"Send ARGS to Gnuplot.
Returns nil if Gnuplot signaled an error."
(calc-graph-init)
;; We prepend the newline to work around a bug in Gnuplot, whereby it
;; sometimes does not display the plot, see bug#72778.
(let ((cmd (concat "\n" (mapconcat 'identity args " ") "\n")))
(or (calc-graph-w32-p)
(accept-process-output))
(with-current-buffer calc-gnuplot-buffer
(calc-gnuplot-check-for-errors)
(goto-char (point-max))
(setq calc-gnuplot-trail-mark (point))
(or (>= calc-gnuplot-version 3)
(insert cmd))
(set-marker (process-mark calc-gnuplot-process) (point))
(process-send-string calc-gnuplot-process cmd)
(if (get-buffer-window calc-gnuplot-buffer)
(calc-graph-view-trail))
(or (calc-graph-w32-p)
(accept-process-output (and (not calc-graph-no-wait)
calc-gnuplot-process)))
(prog1
;; Return nil if we got an error.
(not (calc-gnuplot-check-for-errors))
(if (get-buffer-window calc-gnuplot-buffer)
(calc-graph-view-trail))))))
(defun calc-graph-init-buffers ()
(or (and calc-gnuplot-buffer
(buffer-name calc-gnuplot-buffer))
(setq calc-gnuplot-buffer (get-buffer-create "*Gnuplot Trail*")))
(or (and calc-gnuplot-input
(buffer-name calc-gnuplot-input))
(setq calc-gnuplot-input (get-buffer-create "*Gnuplot Commands*"))))
(defun calc-graph-init ()
(or (calc-gnuplot-alive)
(let ((process-connection-type t)
origin)
(if calc-gnuplot-process
(progn
(delete-process calc-gnuplot-process)
(setq calc-gnuplot-process nil)))
(calc-graph-init-buffers)
(with-current-buffer calc-gnuplot-buffer
(insert "\nStarting gnuplot...\n")
(setq origin (point)))
(setq calc-graph-last-device nil)
(setq calc-graph-last-output nil)
(if (calc-graph-w32-p)
(let ((version-str
(shell-command-to-string (concat calc-gnuplot-name " -V"))))
(if (string-match "gnuplot \\([0-9]+\\)\\." version-str)
(setq calc-gnuplot-version (string-to-number
(substring version-str
(match-beginning 1)
(match-end 1))))
(setq calc-gnuplot-version 1))))
(condition-case nil
(let ((args (append (and calc-gnuplot-display
(not (equal calc-gnuplot-display
(getenv "DISPLAY")))
(not (calc-graph-w32-p))
(list "-display"
calc-gnuplot-display))
(and calc-gnuplot-geometry
(not (calc-graph-w32-p))
(list "-geometry"
calc-gnuplot-geometry)))))
(setq calc-gnuplot-process
(apply 'start-process
"gnuplot"
calc-gnuplot-buffer
calc-gnuplot-name
args))
(set-process-query-on-exit-flag calc-gnuplot-process nil))
(file-error
(error "Sorry, can't find \"%s\" on your system"
calc-gnuplot-name)))
(with-current-buffer calc-gnuplot-buffer
(while (and (not (calc-graph-w32-p))
(not (save-excursion
(goto-char origin)
(search-forward "gnuplot> " nil t)))
(memq (process-status calc-gnuplot-process) '(run stop)))
(accept-process-output calc-gnuplot-process))
(or (memq (process-status calc-gnuplot-process) '(run stop))
(error "Unable to start GNUPLOT process"))
(if (not (calc-graph-w32-p))
(if (save-excursion
(goto-char origin)
(re-search-forward
"G N U P L O T.*\n.*version \\([0-9]+\\)\\." nil t))
(setq calc-gnuplot-version
(string-to-number (buffer-substring
(match-beginning 1)
(match-end 1))))
(setq calc-gnuplot-version 1)))
(goto-char (point-max)))))
(with-current-buffer calc-gnuplot-input
(if (= (buffer-size) 0)
(insert "# Commands for running gnuplot\n\n\n")
(or calc-graph-no-auto-view
(eq (char-after (1- (point-max))) ?\n)
(progn
(goto-char (point-max))
(insert "\n"))))))
(provide 'calc-graph)
;;; calc-graph.el ends here
|