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:
|
Date | |
Source | Own work |
Author | Cdang |

This W3C-unspecified vector image was created with Inkscape .Category:Unspec New SVG created with Inkscape#{{padleft:{{%23expr:{{CURRENTYEAR}} -{{REVISIONYEAR}}}}%7C2%7C0}}{{padleft:{{%23expr:{{CURRENTMONTH2}}-{{REVISIONMONTH}}}}%7C2%7C0}}{{padleft:{{%23expr:{{CURRENTDAY2}} -{{REVISIONDAY2}}}}%7C2%7C0}}
Scilab source
Category:Images with Scilab codea = 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:
![]() ![]() |
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.
|