File:Largeur a mi hauteur pic dyssymetrique.svg

Summary

Description
Français : Définition de la largeur à mi-hauteur pour un pic dissymétrique. Pic créé avec Scilab.
English: Definition of the full width at half maximum (FWHM) for a dissymetrical peak. Caption in French:
  • hauteur : height, maximum;
  • mi-hauteur: half height, half maximum;
  • largeur à mi-hauteur: full width at half maximum.
Peak created with Scilab.
Date
Source Own work
Author Cdang
 
Category:Unspec SVG created with Inkscape#00100316Largeur%20a%20mi%20hauteur%20pic%20dyssymetrique.svg Category:Files by User:cdang

Scilab source

Category:Images with Scilab code
a = 5; // demi-largeur du domaine de définition
// en: half width of the domain of the function
h = 1; // hauteur du pic
// en: peak height

theta = linspace(-0.5*%pi, 0.5*%pi, 51);
foo= cos(theta); // pour avoir plus de valeur au sommet qu'aux bords
// en: to have more values close to the summit than at the rim
clean(foo);
x = gsort(a*[1-foo, foo(2:$)-1], "c", "i"); // domaine de définition symétrique entre -a et a
// en: symmetrical domain of the function between -a and a

y = h*(exp(-x.^2) + 0.5*exp(-(x + 1.5).^2)); // deux pics gaussiens
// en: two gaussian peaks

plot(x, y);

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
Creative Commons CC-Zero This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication.
The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.

Category:CC-Zero#Largeur%20a%20mi%20hauteur%20pic%20dyssymetrique.svg
Category:Self-published work Category:Probability plots Category:Diagrams of peaks
Category:CC-Zero Category:Diagrams of peaks Category:Files by User:cdang Category:Images with Scilab code Category:Pages using deprecated source tags Category:Probability plots Category:Self-published work Category:Unspec New SVG created with Inkscape Category:Unspec SVG created with Inkscape