File:Trace ln sqrt 1 2 deux echelles scilab.svg
Summary
Category:Files by User:cdang
| Description |
Français : Superposition de deux graphiques — logarithme « ln » et racine carrée « sqrt » — pour x entre 1 et 2 avec une échelle différente : utilisation d'un axe y à droite avec Scilab.
Créé avec Scilab, modifié avec Inkscape.
English: The graphs of two functions — logarithm “ln” and square root “sqrt” — for x between 1 and 2 are superimposed with a different scale: use of a right y-scale in Scilab.
Created with Scilab, modified with Inkscape. |
| Date | |
| Source | Own work |
| Author | Cdang |
| SVG development |
Source code

This media was created with Scilab (free and open source software for numerical computation)Category:Images with Scilab source code
Here is a listing of the source used to create this file.
Here is a listing of the source used to create this file.
English:
// Domain
x = [1:0.05:2];
// Creation of the left axis and plot of the 1st function
a1 = newaxes();
a1.tight_limits = "on";
plot(x, log(x));
legend("ln", 2);
// Creation of the right axis and plot of the 2nd function
a2 = newaxes();
a2.filled = "off"; // no background for this plot
a2.axes_visible(1) = "off"; // 2nd x-axis hidden
a2.y_location = "right";
a2.tight_limits = "on";
plot(x, sqrt(x), "r");
legend("sqrt", 1);
Licensing
Cdang, the copyright holder of this work, hereby publishes 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.
|