From profit at quansoft.com Sun Jan 17 22:38:34 2016 From: profit at quansoft.com (pro Fit Support) Date: Mon, 18 Jan 2016 05:38:34 +0100 Subject: [proFit-list] [Ann] pro Fit 7.0.6 released Message-ID: <1BAB5AD3-6136-492E-97C5-FE5F6B5B0CD1@quansoft.com> Dear list members We have just released pro Fit 7.0.6. This release is primarily a bug-fix release, and it updates the natural constants in the pop-up of the scripting window to their newest values. This is a recommended download for all pro Fit users. It can be found at http://quansoft.com/down.html For those who haven?t upgraded to pro Fit 7 yet, a reminder from earlier emails: pro Fit 7.0 is a free upgrade for anyone who bought a pro Fit registration code since 1 January 2014. All other owners of a license to pro Fit 6.2 are entitled to an upgrade at a reduced price of USD 55. The regular price (including academic price) is USD 95. Best Regards Your QuantumSoft team _______________________________________________ proFit-list mailing list proFit-list at quantum-soft.com http://quantum-soft.com/mailman/listinfo/profit-list_quantum-soft.com From profit at quansoft.com Mon Feb 15 10:03:23 2016 From: profit at quansoft.com (pro Fit Support) Date: Mon, 15 Feb 2016 17:03:23 +0100 Subject: [proFit-list] [Ann] pro Fit 7.0.7 released Message-ID: <0C3F3BBC-3268-44DF-837C-19616364FBA4@quansoft.com> Dear list members We have just released pro Fit 7.0.7. This release is primarily a bug-fix release, and it changes the default for the text import/export line delimiter from CR to unix-style LF. This is a recommended download for all pro Fit users. It can be found at http://quansoft.com/down.html For those who haven?t upgraded to pro Fit 7 yet, a reminder from earlier emails: pro Fit 7.0 is a free upgrade for anyone who bought a pro Fit registration code since 1 January 2014. All other owners of a license to pro Fit 6.2 are entitled to an upgrade at a reduced price of USD 55. The regular price (including academic price) is USD 95. Best Regards Your QuantumSoft team From acalvert at usgs.gov Fri Feb 26 16:38:20 2016 From: acalvert at usgs.gov (Calvert, Andrew) Date: Fri, 26 Feb 2016 14:38:20 -0800 Subject: [proFit-list] passing lists to functions Message-ID: I need to perform calculations on 1D and 2D lists using Python functions and programs. I can get the calculations to work within a program (build the 2D list from a data window and perform the calculations), however, I would prefer to do the calculations in a function because I would like to access the same function from several programs. I seem to be unable to pass a list as an argument to a proFit function. I am able to pass single variables, but not lists. Is this true? -- Andrew Calvert (acalvert at usgs.gov) Volcano Science Center, US Geological Survey 345 Middlefield Road, MS-910 Menlo Park, CA 94025 ph: 650-329-5276; fax: 650-329-5203 -------------- next part -------------- An HTML attachment was scrubbed... URL: From profit at quansoft.com Sun Feb 28 02:59:00 2016 From: profit at quansoft.com (proFit Support) Date: Sun, 28 Feb 2016 09:59:00 +0100 Subject: [proFit-list] passing lists to functions In-Reply-To: References: Message-ID: <9437DC02-9B19-40D2-89B7-FF65913161F1@quansoft.com> Does the function have to be a pro Fit function? Or do you just need a piece of code that can be called from two different pro Fit programs? In the former case, have a look at the ?Complete Program? example, which is pasted into a the window when you choose Help->Source Examples->Complete Program from the toolbar of a script window (in Python mode). It shows how two programs can share a common global variable. Similarly, they could share a common Python function. The only drawback here is that both programs and the function reside in the same source script. In the latter case, i.e. if you need that function to be a pro Fit function, you can probably just add a ?## function? statement that exports the common function to pro Fit as a pro Fit function ? did not try this, though. An alternative approach would be to pass the data through a pro Fit window. This would, however, be considerably slower than direct communication between two Python scripts. Best regards Kurt Sutter QuantumSoft > On 26 Feb 2016, at 23:38, Calvert, Andrew wrote: > > I need to perform calculations on 1D and 2D lists using Python functions and programs. I can get the calculations to work within a program (build the 2D list from a data window and perform the calculations), however, I would prefer to do the calculations in a function because I would like to access the same function from several programs. > > I seem to be unable to pass a list as an argument to a proFit function. I am able to pass single variables, but not lists. Is this true? > > > -- > Andrew Calvert (acalvert at usgs.gov ) > Volcano Science Center, US Geological Survey > 345 Middlefield Road, MS-910 > Menlo Park, CA 94025 > ph: 650-329-5276; fax: 650-329-5203 > _______________________________________________ > proFit-list mailing list > proFit-list at quantum-soft.com > http://quantum-soft.com/mailman/listinfo/profit-list_quantum-soft.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From jeremy_harbinson at me.com Tue Mar 22 17:04:37 2016 From: jeremy_harbinson at me.com (Jeremy Harbinson) Date: Tue, 22 Mar 2016 23:04:37 +0100 Subject: [proFit-list] getting mouse position Message-ID: Hi, In older versions of proFit (version 6) there was a window showing the mouse pointer position (it also had a lens). I think the mouse position on the page and maybe within a graph on the page could be shown. So far I have not been able to track this tool down in proFit 7 - does it still exist? all the best, Jeremy From acbev at lanl.gov Wed Mar 23 12:11:34 2016 From: acbev at lanl.gov (Beveridge, Andrew Cameron) Date: Wed, 23 Mar 2016 17:11:34 +0000 Subject: [proFit-list] Plotting Large Datasets Message-ID: Maybe it is my computer or my OS X version, but plotting large data sets in pro Fit, version 6 or 7, gives spinning beach balls and constant crashes. Attached is a crude program that hopefully someone can improve to remedy the problem. It would be nice if this was "built-in" to pro Fit, in a much more elegant way than here. (Maybe it is already built-in and I cannot find it.) How the program works: 1.) Pick a y-column 2.) Give the width in pixels of your graph 3.) The program will "bin" your data into min/max numbers depending on the size of your plot and data set. 4.) The min/max bins will be rows highlighted on your dataset. 5.) Choose Plot Selected Data only 6.) You should now have a plot that resembles the original dataset with a much smaller CPU load. It would be nice if this was automatic to the plot, that is, if you rescaled the x-axis, a new decimation would occur. Maybe someone could add that. Cheers, Andrew -------------- next part -------------- A non-text attachment was scrubbed... Name: DataReducePlot.func Type: application/octet-stream Size: 35941 bytes Desc: DataReducePlot.func URL: -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: ATT00001.txt URL: From ivan at quansoft.com Fri Mar 25 15:22:34 2016 From: ivan at quansoft.com (ivan) Date: Fri, 25 Mar 2016 16:22:34 -0400 Subject: [proFit-list] getting mouse position In-Reply-To: References: Message-ID: <9C08A582-A455-4FA6-8588-CA48C06CB6C5@quansoft.com> Hi Jeremy, Yes, it does. Simply hold down the ?C? key (no other keys, no modifiers. It will show the mouse position in graph coordinates when it is on top of the graph, and page coordinates elsewhere. > On Mar 22, 2016, at 6:04 PM, Jeremy Harbinson wrote: > > Hi, > In older versions of proFit (version 6) there was a window showing the mouse pointer position (it also had a lens). I think the mouse position on the page and maybe within a graph on the page could be shown. So far I have not been able to track this tool down in proFit 7 - does it still exist? > all the best, > Jeremy > _______________________________________________ > proFit-list mailing list > proFit-list at quantum-soft.com > http://quantum-soft.com/mailman/listinfo/profit-list_quantum-soft.com