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
InfoField

Source code

The logo of Scilab – free and open source software for numerical computation
The logo of Scilab – free and open source software for numerical computation
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.

Deutsch  English  +/− 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:
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#Trace%20ln%20sqrt%201%202%20deux%20echelles%20scilab.svgCategory:Self-published work
Category:Logarithm Category:Square root graphs
Category:CC-Zero Category:Files by User:cdang Category:Images with Scilab source code Category:Logarithm Category:SVG created also with Inkscape Category:Self-published work Category:Square root graphs Category:Valid SVG created with Scilab