Rank: 236 based on 252 downloads (last 30 days) and 10 files submitted
photo

François Beauducel

E-mail
Company/University
Institut de Physique du Globe de Paris
Lat/Long
48.8448371887207, 2.356282949447632

Personal Profile:

I started using Matlab in 1991 (v3.0).

Professional Interests:
geophysics, volcanology, seismology, modelling, signal processing, ground deformation

 

Watch this Author's files

 

Files Posted by François View all
Updated   File Tags Downloads
(last 30 days)
Comments Rating
06 Feb 2012 Screenshot READIS2: Import IS2 files (Fluke infrared camera) Read thermal infrared and visible images from Fluke .IS2 binary files. Author: François Beauducel infrared, thermography, data import, measurement, camera 47 0
08 Nov 2011 Screenshot Mogi: point source in elastic half-space Computes surface displacements, tilt and strain due to point source at depth Author: François Beauducel deformation, magma chamber, tilt, strain, elastic, displacements 16 0
  • 4.5
4.5 | 2 ratings
25 Oct 2011 Screenshot Read and write miniSEED file Imports and exports data files in seismological format "mini-SEED" Author: François Beauducel geophysics, seismology, data import, seed, miniseed, mseed 38 2
  • 5.0
5.0 | 5 ratings
29 Mar 2011 EASTER: Easter Sunday Computes Catholic Easter Sunday date Author: François Beauducel calendar, dates 2 0
28 Mar 2011 Screenshot WETON: Javanese calendar Computes "weton" dates in the Javanese calendar Author: François Beauducel dates, calendar, conversion 2 0
Comments and Ratings by François View all
Updated File Comments Rating
09 Aug 2011 plotboxpos Returns the position of a plotted axis region Author: Kelly Kearney

Very useful function, thanks.
It's missing only a little test like:

if nargin < 1
   h = gca;
end

and your function becomes perfect !
Thanks again.

25 Jul 2011 Fluke .IS2 file reader Simple function for reading out data from Fluke Thermal Imager -IS2 files. Author: Magnus Andersen

Hi,

I need to load IS2 file from a TI32 instrument... your script is not exactly adapted to it but it was an essential start for understanding Fluke file format. So many thanks for that!

FYI, the visible image is not a grayscale but a RGB coding in 5:6:5 bits. So to get a color image from your 16-bit matrix vis, you just have to type:
v = zeros([480,640,3],'uint8');
v(:,:,3) = bitshift(bitand(vis,31),4); % 5 less significant bits = blue
v(:,:,2) = bitshift(bitand(bitshift(vis,-5),63),3); % 6 middle bits = green
v(:,:,1) = bitshift(bitshift(vis,-11),4); % 5 most significant bits = red
imagesc(v)

I will continue this work and probably submit a script adapted to TI32 files in the next days. As you I will try to get some of the metadata (I only need date, time and emissivity value).

If you think it may be of any interest, I may adapt the script to read TI10 files also...

Regards,

François.

23 Sep 2010 Reading mini-Seed m-files for reading mini-Seed files with STEIN-1 or STEIN-2 compression protocol. Author: Ljupco Jordanovski

Hi.
It is a very useful effort that you made with these functions, and I was very surprised there is no other attempts on the Web about this...

Unfortunately, I didn't get success in using your function with my miniSEED files... I spent some time to look at your scripts, but finally wrote my own function "rdmseed.m" (submitted this day to Matlab Central). My code is totally rewritten (especially STEIM decoding), also because I needed to access all block headers of individual records; but somehow my function is partly inspired from your code. Thanks for that, and of course I added you in my acknowledgments.

24 Mar 2010 Round with significant digits Rounds towards the nearest number with N significant digits. Author: François Beauducel

Thanks Oleg.
Yes, I will complete the "see also" function list in future updates.

1) you effectively need the "find" in Matlab versions < 7... and also single pipe for the OR test.
2) like you I have hesitated between "switch" and "feval". But the feval code is much shorter...

François.

22 Mar 2010 Round with significant digits Rounds towards the nearest number with N significant digits. Author: François Beauducel

Thanks Daniel for your time. I submitted an updated version that corrects the zero-value behaviour, and I added some options for the rounding method.
About the mlint messages, I kept my original syntax which is voluntarily backward compatible (with Matlab versions < 7).

Comments and Ratings on François' Files View all
Updated File Comment by Comments Rating
23 Dec 2011 Round with significant digits Rounds towards the nearest number with N significant digits. Author: François Beauducel E, K
30 Nov 2011 Read and write miniSEED file Imports and exports data files in seismological format "mini-SEED" Author: François Beauducel Kolar, Petr

works intuitively for the first run. thanks.

27 Oct 2011 Read and write miniSEED file Imports and exports data files in seismological format "mini-SEED" Author: François Beauducel Berger, Jonathan
12 Oct 2011 Mogi: point source in elastic half-space Computes surface displacements, tilt and strain due to point source at depth Author: François Beauducel Rendon, Alan
19 Jul 2011 Read and write miniSEED file Imports and exports data files in seismological format "mini-SEED" Author: François Beauducel Bohnenstiehl, Del
Top Tags Applied by François
earth science, displacements, elastic, geophysics, modelling
Files Tagged by François View all
Updated   File Tags Downloads
(last 30 days)
Comments Rating
06 Feb 2012 Screenshot READIS2: Import IS2 files (Fluke infrared camera) Read thermal infrared and visible images from Fluke .IS2 binary files. Author: François Beauducel infrared, thermography, data import, measurement, camera 47 0
08 Nov 2011 Screenshot Mogi: point source in elastic half-space Computes surface displacements, tilt and strain due to point source at depth Author: François Beauducel deformation, magma chamber, tilt, strain, elastic, displacements 16 0
  • 4.5
4.5 | 2 ratings
25 Oct 2011 Screenshot Read and write miniSEED file Imports and exports data files in seismological format "mini-SEED" Author: François Beauducel geophysics, seismology, data import, seed, miniseed, mseed 38 2
  • 5.0
5.0 | 5 ratings
29 Mar 2011 EASTER: Easter Sunday Computes Catholic Easter Sunday date Author: François Beauducel calendar, dates 2 0
28 Mar 2011 Screenshot WETON: Javanese calendar Computes "weton" dates in the Javanese calendar Author: François Beauducel dates, calendar, conversion 2 0

Contact us at files@mathworks.com