Splitting a file into multiple files and need to generate file names from the individual files

3 views (last 30 days)
I am using the code below to split a large file into many files. I am splitting at the defined character "Z". The code works as intended but as of now I just have my file names as 'Data 1' 'Data 2' and so on. I have the variable 'destnames' storing the first line of the file and I would like to pull a segment from there to be the file name. Data example and code below
For example I would like to make 'S5C_00096 the file name for this file (Below is example of what is being stored in 'destnames', which is currenly not being used in the code)
' S5C_00096_00001.tif 5.0000 5.0300 11.4993 1700497.970037 34462.970037 999814.344062 0.101 -0.100 0.000 0.000 26.438 0.000 1.000 Sat Jun 19 09:01:03 2021 1624111263.0071930885'
Code
wholefile = fileread('C:\Location\test.txt');
splitfiles = regexp(wholefile, 'Z[^Z]+', 'match');
destnames = regexp(splitfiles, '(?<=Z)[^\r\n]+', 'match', 'once');
for fileidx = 1:numel(splitfiles)
fid = fopen(sprintf('Data%2d.txt', fileidx), 'w');
fwrite(fid, splitfiles{fileidx});
fclose(fid);
end
  3 Comments
Erik Sarnello
Erik Sarnello on 29 Jun 2021
@Stephen Cobeldick not sure if you meant to delete the last comment but just confirming that I would like to split at 'Z' and not the block sections.

Sign in to comment.

Accepted Answer

Stephen23
Stephen23 on 30 Jun 2021
Edited: Stephen23 on 30 Jun 2021
whf = fileread('./testsplit.txt');
spl = regexp(whf,'\s+#Z\s+','split'); % more robust than just 'Z'
for k = 2:numel(spl) % first split text is empty
fnm = regexp(spl{k},'^\S+(?=_\d+\.tif)','match','once');
fnm = sprintf('%s.txt',fnm);
fid = fopen(fullfile('.',fnm), 'w');
fprintf(fid,'#Z ');
fwrite(fid, spl{k});
fclose(fid);
end
Checking folder content after running the code:
dir *.txt
S5C_00096.txt S5C_00098.txt S5C_00100.txt S5C_00102.txt SES2_15c_00105.txt S5C_00097.txt S5C_00099.txt S5C_00101.txt SES2_15C_00104.txt testsplit.txt
Checking the content of the first file:
type S5C_00096.txt
#Z S5C_00096_00001.tif 5.0000 5.0300 11.4993 1700497.970037 34462.970037 999814.344062 0.101 -0.100 0.000 0.000 26.438 0.000 1.000 Sat Jun 19 09:01:03 2021 1624111263.0071930885 #C Sat Jun 19 09:01:03 2021. Monochromator moved to E = 11.5 KeV. #S 254 Escan 11.5 11.554 18 3 #D Sat Jun 19 09:01:03 2021 #T 3 (Seconds) #G0 0 #G1 0 #G3 0 #G4 0 #Q #P0 66.178321 13 0.3751 0.09 74.55925 0 0 0 #P1 100 0 -3.0872869e-07 0 0 -20 0 0 #P2 0 0.1010475 -0.099809279 9.8998373 1.01 -1.425 40.000995 0 #P3 0 0 0 2.3999998 1.7999999 2.2999997 1.9999999 -20.199785 #P4 -5.762005 9.699785 -0.0024 9.69995 3.978 0 #N 14 #L Energy mono Epoch Seconds IC2 LIVET REALT SCA0 SCA1 SCA2 ICR OCR Monitor Detector 11.5 9.8998373 114337.824 3 597168 2.2688973 3.0000016 891 0 595 12336.83 1 1011106 20566 11.503 9.8972435 114341.208 3 595067 2.2676171 3.0005008 849 0 554 12362.758 1 1013854 20689 11.506 9.8946185 114344.582 3 631417 2.2551388 3.0000016 888 0 600 12610.754 1 1020382 20937 11.509 9.8920248 114347.952 3 615285 2.2443557 3.0005008 984 0 654 12760.901 1 1022032 21028 11.512 9.889431 114351.314 3 614523 2.2602682 3.0005008 932 0 639 12546.741 1 1020875 21011 11.515 9.8868373 114354.688 3 606432 2.2535663 3.0005 923 0 621 12528.586 1 1009982 20720 11.518 9.8842123 114358.046 3 605136 2.2642005 3.000464 921 0 625 12367.279 1 1007804 20650 11.521 9.8816185 114361.418 3 605760 2.2568708 3.000496 940 0 642 12511.571 1 1008730 20687 11.524 9.8790248 114364.780 3 607232 2.2615955 3.0005008 967 0 661 12481.454 1 1011074 20746 11.527 9.876431 114368.151 3 610482 2.2761503 3.0005008 973 0 648 12415.261 1 999920 20460 11.53 9.8738373 114371.518 3 632002 2.2454048 3.0005 1025 0 712 12617.769 1 1012345 20764 11.533 9.8712435 114374.887 3 638458 2.2511631 3.0003808 1165 0 837 12709.43 1 1010672 20768 11.536 9.8686498 114378.247 3 657790 2.237412 3.0004744 1154 0 840 12707.986 1 1005252 20624 11.539 9.866056 114381.627 3 611766 2.2524756 3.0005008 1223 0 893 12812.569 1 1012756 20791 11.542 9.8634623 114385.002 3 622356 2.229375 3.0005 1292 0 965 12948.472 1 1015285 20991 11.545 9.8608685 114388.373 3 658768 2.2484337 3.0004976 1640 0 1230 12916.547 1 1014651 21038 11.548 9.8582748 114391.755 3 712392 2.2096052 3.0003936 2083 0 1561 13458.966 1 1018550 21153 11.551 9.8557123 114395.122 3 710629 2.2343468 3.0004576 2035 0 1590 13085.703 1 982355 20418 11.554 9.8531185 114398.511 3 695066 2.2238342 3.0003656 2231 0 1799 13229.853 1 993740 20603 #S 255 Escan 11.554 11.574 80 3 #D Sat Jun 19 09:02:07 2021 #T 3 (Seconds) #G0 0 #G1 0 #G3 0 #G4 0 #Q #P0 66.178321 13 0.3751 0.09 74.55925 0 0 0 #P1 100 0 -3.0872869e-07 0 0 -20 0 0 #P2 0 0.1010475 -0.099809279 9.8531185 1.01 -1.425 40.000995 0 #P3 0 0 0 2.3999998 1.7999999 2.2999997 1.9999999 -20.199785 #P4 -5.762005 9.699785 -0.0024 9.69995 3.978 0 #N 14 #L Energy mono Epoch Seconds IC2 LIVET REALT SCA0 SCA1 SCA2 ICR OCR Monitor Detector 11.554 9.8531185 114401.580 3 692320 2.2161914 3.0005008 2259 0 1857 13188.391 1 991667 20548 11.5542 9.8528998 114404.779 3 691082 2.2178033 3.0003736 2327 0 1902 13325.799 1 997735 20701 11.5545 9.852681 114407.967 3 685411 2.2401841 3.0000016 2353 0 1919 13150.258 1 996767 20671 11.5548 9.8524623 114411.170 3 685162 2.2094834 3.0004968 2428 0 2021 13271.428 1 1000832 20773 11.555 9.8522435 114414.370 3 682676 2.217424 3.0005 2457 0 2056 13305.078 1 1000473 20761 11.5553 9.8520248 114417.576 3 680523 2.2113662 3.0005 2514 0 2092 13403.931 1 999800 20747 11.5555 9.8518373 114420.773 3 681583 2.2131942 3.0005008 2497 0 2108 13337.736 1 1001328 20782 11.5557 9.8516185 114423.971 3 681152 2.2011643 3.0005008 2484 0 2050 13332.49 1 1000030 20741 11.556 9.8513998 114427.180 3 683538 2.2062628 3.0004952 2461 0 2068 13336.58 1 1000113 20738 11.5563 9.851181 114430.371 3 689807 2.2092273 3.0000016 2580 0 2205 13447.236 1 1003041 20810 11.5565 9.8509623 114433.581 3 691707 2.2219903 3.0005 2668 0 2257 13377.196 1 999080 20704 11.5568 9.8507435 114436.774 3 699401 2.2153854 3.0005008 2726 0 2328 13463.12 1 1002226 20782 11.557 9.8505248 114439.960 3 704318 2.2023536 3.0000016 2795 0 2441 13518.719 1 1000354 20725 11.5573 9.850306 114443.146 3 710228 2.2089214 3.0000016 2884 0 2475 13416.05 1 999763 20708 11.5575 9.8500873 114446.341 3 718261 2.2128659 3.0004632 2923 0 2513 13590.069 1 1000788 20721 11.5578 9.8498998 114449.542 3 722041 2.1901542 3.0000016 2993 0 2595 13672.096 1 998023 20646 11.558 9.849681 114452.731 3 729109 2.2079484 3.0005008 3001 0 2619 13588.18 1 999949 20685 11.5583 9.8494623 114455.929 3 731068 2.2163549 3.0000016 3234 0 2824 13647.634 1 997057 20599 11.5585 9.8492435 114459.121 3 734550 2.2124523 3.0005 3198 0 2830 13616.565 1 997286 20591 11.5587 9.8490248 114462.329 3 738378 2.1959522 3.0000016 3348 0 2931 13692.921 1 997956 20594 11.559 9.848806 114465.529 3 735872 2.1960238 3.0003856 3457 0 3046 13645.116 1 992543 20442 11.5593 9.8485873 114468.716 3 737876 2.2014411 3.0005008 3592 0 3161 13686.035 1 993608 20455 11.5595 9.8483685 114471.924 3 735818 2.193157 3.0004952 3595 0 3205 13759.617 1 991630 20384 11.5598 9.848181 114475.112 3 736222 2.208083 3.0003832 3789 0 3377 13829.19 1 993682 20423 11.56 9.8479623 114478.298 3 730510 2.1990728 3.0004952 3884 0 3472 13856.749 1 990839 20326 11.5602 9.8477435 114481.490 3 729311 2.1768131 3.0000016 3992 0 3618 13912.54 1 995213 20411 11.5605 9.8475248 114484.689 3 720394 2.1876227 3.0005 4176 0 3754 14039.898 1 992300 20313 11.5608 9.847306 114487.897 3 711960 2.1844915 3.000376 4346 0 3937 13935.509 1 990523 20249 11.561 9.8470873 114491.095 3 702978 2.1866899 3.0004992 4529 0 4102 14146.954 1 990104 20209 11.5612 9.8468685 114494.291 3 690578 2.1816981 3.000344 4734 0 4335 14084.442 1 985392 20061 11.5615 9.8466498 114497.489 3 681570 2.1728979 3.0005008 5056 0 4586 14164.494 1 984788 20024 11.5618 9.846431 114500.693 3 672164 2.1748259 3.0005 5171 0 4744 14357.471 1 981816 19914 11.562 9.8462435 114503.892 3 667599 2.1775173 3.0004984 5293 0 4894 14383.353 1 982236 19896 11.5623 9.8460248 114507.086 3 659236 2.1501312 3.0005008 5552 0 5109 14539.113 1 978489 19776 11.5625 9.845806 114510.293 3 654880 2.15958 3.0005008 5763 0 5276 14556.997 1 977840 19749 11.5628 9.8455873 114513.479 3 648581 2.1504421 3.0005 6257 0 5792 14717.904 1 973531 19617 11.563 9.8453685 114516.668 3 645375 2.1481147 3.0004952 6394 0 5934 14742.23 1 971954 19557 11.5633 9.8451498 114519.874 3 640826 2.1302517 3.0005 6927 0 6472 15089.766 1 965481 19357 11.5635 9.844931 114523.079 3 642238 2.1400681 3.0004992 7312 0 6837 15087.837 1 965351 19300 11.5638 9.8447123 114526.277 3 639811 2.1282336 3.0005 7644 0 7206 15195.23 1 957706 19042 11.564 9.8445248 114529.472 3 643897 2.1018713 3.000484 8104 0 7595 15561.847 1 959273 19011 11.5642 9.844306 114532.675 3 642718 2.1020741 3.0005 8516 0 8013 15680.227 1 950672 18701 11.5645 9.8440873 114535.865 3 645939 2.1086549 3.0005 8936 0 8459 15677.767 1 947984 18522 11.5647 9.8438685 114539.051 3 645934 2.0765113 3.0005 9597 0 9086 16097.192 1 940423 18239 11.565 9.8436498 114542.253 3 651221 2.0650567 3.0005008 10207 0 9674 16481.872 1 940380 18115 11.5652 9.843431 114545.460 3 650732 2.0721786 3.0000024 10798 0 10279 16553.593 1 930973 17758 11.5655 9.8432123 114548.652 3 654945 2.05114 3.0005 11504 0 10984 16890.607 1 928024 17564 11.5657 9.8429935 114551.856 3 655838 2.0421922 3.0000744 12229 0 11670 17086.54 1 919737 17237 11.566 9.842806 114555.058 3 659897 2.0209048 3.0004992 12690 0 12147 17518.886 1 918914 17129 11.5662 9.8425873 114558.253 3 660523 2.0180834 3.0005008 13273 0 12712 17579.551 1 911059 16851 11.5665 9.8423685 114561.460 3 664753 2.0046893 3.0001824 13884 0 13291 18120.514 1 908437 16714 11.5668 9.8421498 114564.651 3 666295 1.9886212 3.0004984 14039 0 13455 18109.533 1 903169 16531 11.567 9.841931 114567.851 3 670968 1.9800399 3.0002032 14855 0 14246 18504.172 1 902342 16428 11.5672 9.8417123 114571.056 3 671221 1.9616708 3.0004552 15039 0 14456 18677.956 1 897138 16218 11.5675 9.8414935 114574.256 3 675962 1.956351 3.0005008 15303 0 14746 18715.967 1 899635 16185 11.5678 9.8412748 114577.458 3 675954 1.9570732 3.0005 15584 0 15061 18949.726 1 897348 16058 11.568 9.8410873 114580.658 3 677724 1.9523815 3.0005 15642 0 15072 19035.214 1 898430 16033 11.5682 9.8408685 114583.853 3 679392 1.9445904 3.0004368 15905 0 15335 19070.34 1 897593 15966 11.5685 9.8406498 114587.060 3 685516 1.9569818 3.0005 15924 0 15333 19142.743 1 899397 15981 11.5687 9.840431 114590.249 3 693013 1.9418404 3.0004992 15941 0 15378 19285.828 1 900642 15992 11.569 9.8402123 114593.437 3 703576 1.9512073 3.0005008 15874 0 15316 19206.57 1 904468 16071 11.5693 9.8399935 114596.644 3 712693 1.9376859 3.0004976 15655 0 15082 19058.3 1 902502 16031 11.5695 9.8397748 114599.833 3 732597 1.9397706 3.0005008 15865 0 15278 19403.326 1 912035 16241 11.5697 9.839556 114603.027 3 749553 1.9409158 3.0004944 15809 0 15230 19410.94 1 911515 16235 11.57 9.8393685 114606.221 3 768000 1.9328806 3.0004936 15493 0 14935 19270.202 1 914728 16323 11.5702 9.8391498 114609.421 3 784826 1.9426657 3.0005 15757 0 15195 19330.14 1 914544 16336 11.5705 9.838931 114612.637 3 799198 1.9411481 3.0004912 15378 0 14757 19210.796 1 917399 16417 11.5708 9.8387123 114615.845 3 807459 1.9507113 3.0004056 15141 0 14583 19006.401 1 918470 16469 11.571 9.8384935 114619.038 3 818355 1.9527475 3.0005 14941 0 14353 18861.117 1 922215 16578 11.5713 9.8382748 114622.245 3 826249 1.9719367 3.0004856 14875 0 14281 18689.748 1 920700 16566 11.5715 9.838056 114625.439 3 838972 1.9746896 3.0000672 14692 0 14102 18655.59 1 923591 16634 11.5717 9.8378373 114628.642 3 848623 1.9710096 3.0000672 14557 0 14031 18662.517 1 924572 16626 11.572 9.8376498 114631.832 3 859661 1.9665989 3.000448 14204 0 13631 18451.144 1 930096 16657 11.5723 9.837431 114635.024 3 866247 1.9850319 3.0001712 13829 0 13285 18189.128 1 935985 16514 11.5725 9.8372123 114638.231 3 870497 2.0049787 3.0004992 13739 0 13184 17907.422 1 943260 16372 11.5727 9.8369935 114641.420 3 870004 2.0143746 3.0005 13466 0 12913 17682.411 1 948428 16227 11.573 9.8367748 114644.637 3 866640 1.9905208 3.0004992 13029 0 12515 17616.998 1 949263 16301 11.5732 9.836556 114647.838 3 855382 2.0166184 3.0005 13307 0 12759 17681.58 1 940526 16465 11.5735 9.8363373 114651.040 3 843671 2.0119864 3.0000016 13331 0 12781 17640.775 1 936541 16768 11.5738 9.8361498 114654.245 3 829720 1.9973709 3.0004992 13292 0 12737 18090.281 1 935532 16978 11.574 9.835931 114657.442 3 807697 2.0150591 3.0000016 13166 0 12596 17878.383 1 932368 17017 #S 256 Escan 11.574 11.7 63 3 #D Sat Jun 19 09:06:25 2021 #T 3 (Seconds) #G0 0 #G1 0 #G3 0 #G4 0 #Q #P0 66.178321 13 0.3751 0.09 74.55925 0 0 0 #P1 100 0 -3.0872869e-07 0 0 -20 0 0 #P2 0 0.1010475 -0.099809279 9.835931 1.01 -1.425 40.000995 0 #P3 0 0 0 2.3999998 1.7999999 2.2999997 1.9999999 -20.199785 #P4 -5.762005 9.699785 -0.0024 9.69995 3.978 0 #N 14 #L Energy mono Epoch Seconds IC2 LIVET REALT SCA0 SCA1 SCA2 ICR OCR Monitor Detector 11.574 9.835931 114660.510 3 808271 1.9913749 3.0004992 12877 0 12363 17869.061 1 935299 17083 11.576 9.8342123 114663.831 3 654772 2.0067795 3.0004984 12625 0 12104 17601.834 1 939457 17425 11.578 9.8324935 114667.135 3 601374 2.0220279 3.0005008 12412 0 11866 17656.038 1 950894 17547 11.58 9.8307748 114670.462 3 597293 2.0023798 3.0004992 12628 0 12080 17753.875 1 957098 17407 11.582 9.829056 114673.771 3 618106 1.9964482 3.0005 12870 0 12322 17888.769 1 990476 17440 11.584 9.8273373 114677.079 3 622528 2.0014832 3.0005 12764 0 12239 17855.259 1 1418606 17486 11.586 9.8256185 114680.386 3 627055 2.0403655 3.0000016 12236 0 11742 17209.662 1 2159777 17293 11.588 9.823931 114683.715 3 622567 2.0099139 3.0000352 12485 0 11918 17854.496 1 1122707 18009 11.59 9.8222123 114687.015 3 598194 1.9992335 3.000516 12389 0 11905 17768.31 1 992059 17913 11.592 9.8204935 114690.319 3 593418 2.0210951 3.0005008 12531 0 11994 17729.992 1 980880 17669 11.594 9.8187748 114693.641 3 589628 1.9945266 3.0004992 13091 0 12510 18210.336 1 954980 17678 11.596 9.8170873 114696.951 3 597245 1.957918 3.0005008 13291 0 12743 18553.893 1 947102 17746 11.598 9.8153685 114700.280 3 623740 1.9806305 3.0003808 13478 0 12918 18530.967 1 946757 17861 11.6 9.8136498 114703.594 3 667812 1.9704984 3.0000016 13182 0 12628 18448.632 1 945015 17957 11.602 9.8119623 114706.907 3 745675 1.9841442 3.0004984 12982 0 12459 18332.841 1 947971 18147 11.604 9.8102435 114710.222 3 852059 1.9675552 3.0000872 13135 0 12555 18594.141 1 950205 18262 11.606 9.8085248 114713.538 3 991691 1.9792155 3.0004992 12974 0 12411 18175.888 1 963447 17854 11.608 9.8068373 114716.851 3 935079 1.9764448 3.0005 12958 0 12458 18524.171 1 951211 18456 11.61 9.8051185 114720.177 3 665262 1.9773689 3.0000544 12740 0 12224 18734.997 1 955305 18616 11.612 9.8033998 114723.469 3 600690 1.9031349 2.9258944 12740 0 12224 18712.809 1 953886 18622 11.614 9.8017123 114726.823 3 580121 1.9503006 3.0005016 12956 0 12399 18914.52 1 956206 18711 11.616 9.7999935 114730.141 3 577934 1.9508258 3.0000016 13312 0 12747 19114.469 1 952321 18639 11.618 9.798306 114733.462 3 571539 1.9662517 3.0005008 13592 0 13029 19079.958 1 948086 18567 11.62 9.7965873 114736.770 3 563076 1.9386814 3.0005008 13529 0 12974 19278.567 1 955068 18742 11.622 9.7948998 114740.097 3 560429 1.9381111 3.000328 13742 0 13218 19519.521 1 954343 18760 11.624 9.793181 114743.415 3 579093 1.9335887 3.0005 13533 0 12966 19434.846 1 951476 18739 11.626 9.7914935 114746.716 3 624307 1.9334948 3.0000024 13535 0 12987 19373.726 1 955701 18904 11.628 9.789806 114750.024 3 658914 1.9328216 3.0005 13491 0 12936 19493.781 1 954887 18941 11.63 9.7880873 114753.341 3 671144 1.9289087 3.0005 13294 0 12761 19291.737 1 954605 18997 11.632 9.7863998 114756.655 3 657066 1.9308536 3.0005008 13294 0 12757 19435.964 1 957281 19118 11.634 9.784681 114759.970 3 659421 1.942152 3.0002688 13206 0 12661 19129.811 1 943112 18876 11.636 9.7829935 114763.289 3 626277 1.9348582 3.0004968 13236 0 12671 19538.899 1 960100 19220 11.638 9.781306 114766.609 3 598757 1.9234708 3.0005 13193 0 12611 19683.689 1 963444 19228 11.64 9.7795873 114769.924 3 564445 1.9275556 3.000024 13123 0 12569 19610.848 1 962873 19157 11.642 9.7778998 114773.237 3 569220 1.927917 3.0004728 12911 0 12411 19525.219 1 962984 19379 11.644 9.7762123 114776.561 3 572318 1.9187932 3.0000016 13079 0 12549 19591.481 1 964830 19569 11.646 9.7745248 114779.874 3 575394 1.9360986 3.0005008 13033 0 12478 19646.726 1 964594 19639 11.648 9.772806 114783.183 3 598093 1.931479 3.0004024 12984 0 12443 19518.721 1 965969 19732 11.65 9.7711185 114786.483 3 654758 1.9296527 3.0004992 12837 0 12260 19561.551 1 967166 19803 11.652 9.769431 114789.783 3 702383 1.925524 3.0004992 12881 0 12308 19518.323 1 964741 19794 11.654 9.7677435 114793.090 3 705681 1.93008 3.0005008 12971 0 12416 19653.589 1 968005 19911 11.656 9.766056 114796.404 3 706728 1.9166019 3.0004528 12820 0 12263 19607.097 1 964462 19854 11.658 9.7643373 114799.730 3 768941 1.9197813 3.0003976 13284 0 12708 19777.253 1 964412 19885 11.66 9.7626498 114803.044 3 775118 1.9068545 3.0005 13099 0 12532 19823.747 1 966749 19961 11.662 9.7609623 114806.361 3 664460 1.905461 3.0004584 13076 0 12549 19763.197 1 961545 19841 11.664 9.7592748 114809.671 3 675944 1.9102743 3.0005 13374 0 12814 20017.02 1 966285 19969 11.666 9.7575873 114812.984 3 946050 1.9038393 3.0003272 13211 0 12641 20062.093 1 964013 19964 11.668 9.7558998 114816.294 3 844921 1.9147129 3.0005 13237 0 12680 19998.298 1 961663 19988 11.67 9.7542123 114819.612 3 763630 1.9092065 3.0005008 13110 0 12564 19987.361 1 959350 20000 11.672 9.7525248 114822.918 3 782453 1.9043778 3.0005008 13215 0 12618 20233.905 1 961128 20078 11.674 9.7508373 114826.240 3 751680 1.905698 3.0004992 13257 0 12692 20141.177 1 964091 20198 11.676 9.7491498 114829.559 3 693555 1.9072996 3.0004984 13270 0 12756 20083.368 1 962775 20212 11.678 9.7474623 114832.875 3 725552 1.9013899 3.0003928 13185 0 12622 20166.826 1 962848 20253 11.68 9.7457748 114836.166 3 899533 1.8533679 2.92942 13185 0 12622 20283.075 1 963997 20318 11.682 9.7440873 114839.473 3 979876 1.9141206 3.0004992 13251 0 12662 20101.659 1 959664 20308 11.684 9.7423998 114842.807 3 1055804 1.8839819 2.9903256 13251 0 12611 20318.814 1 961068 20505 11.686 9.7407435 114846.121 3 795500 1.9034894 3.0004992 13300 0 12751 20329.506 1 956603 20273 11.688 9.739056 114849.446 3 744387 1.8845413 3.0004984 13070 0 12474 20258.511 1 957726 20325 11.69 9.7373685 114852.760 3 829955 1.8985351 3.0005008 13319 0 12740 20267.205 1 956337 20323 11.692 9.735681 114856.076 3 951038 1.9118571 3.0005 13218 0 12670 19923.561 1 944195 20081 11.694 9.7339935 114859.388 3 958278 1.9457666 3.0000048 12878 0 12280 19431.416 1 911239 19292 11.696 9.732306 114862.700 3 865606 1.8979862 3.0005008 13233 0 12688 20381.602 1 964174 20603 11.698 9.7306498 114866.008 3 722930 1.8873068 3.0004952 13178 0 12614 20528.194 1 963642 20644 11.7 9.7289623 114869.322 3 700391 1.8985447 3.0003496 13058 0 12517 20374.026 1 959473 20586 #C Sat Jun 19 09:10:01 2021. Monochromator moved to E = 11.5 KeV.

More Answers (0)

Products


Release

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!