Вы находитесь на странице: 1из 26

Programa NEWTON RAPSON - DERIVADAS CON OPERADORES

(MAT-205)
<html
lang="es">

<head>

<title>Programa de Derivadas de Newton</title>

<script type="text/javascript" src="metodos.js"></script>

<link rel="stylesheet" type="text/css" href="style.css">

<style type="text/css">

.nav{height: 55px;}

.nav td{padding-left: 60px;}

.nav a{text-decoration: none;}

.enlace{font-size: 40px;margin-left: -40px;margin-top: -8px;cursor: pointer;}

.input{

border-radius:5px;

font-size:20px;

height:30px;

background:#fafafa;

border:1px solid #c8c8c8;

-webkit-box-shadow:0 1px 0 0 rgba(255,255,255,0.6),inset 0 0 3px 0


rgba(0,0,0,0.1);

-webkit-box-sizing:border-box;

font:italic 300 1rem/1.6rem Georgia,Cambria,"Times New Roman",Times,serif;

padding:5px 12px;

vertical-align:top;

margin:10px;

-webkit-font-smoothing:antialiased;

-webkit-transition:all 0.7s;
}

</style>

</head>

<body onload="setOption(2)">

<div class="title">

<span class="ilogo" style="font-size: 70px;margin-left: -80px;margin-top: -


15px;">&#xe619</span>

<center><br>Metodos numericos</br></center>

</div>

<center>

<table class="menu">

<tr>

<th colspan="6" class="menu_title"><br>Newton Progresiva</br></th>

</tr>

</table>

</center>

<center>

<table class="menu nav">

<table>

</center>

<center>

<div class="uno">

<table>

<tr>

<td class="iletter2" style="font-size:20px;font-weight: bolder;">x:</td>

<td class="iletter2" style="font-size:20px;font-weight: bolder;">y:</td>


<td class="iletter2" style="font-size:20px;font-weight: bolder;">n:</td>

</tr>

<tr>

<td><input type="text" id="x" class="input" style="width:180px;"


placeholder="Valor de Prueba"></td>

<td><textarea id="y" class="input" spellcheck='false'


style="width:250px;height:50px;" placeholder="Escriba la funcion en
JS"></textarea></td>

<td><input type="text" id="n" class="input" style="width:180px;"


placeholder="Cantidad de Datos"></td>

<td><input type="button" value="Generar" onclick="generar2()"></td>

</tr>

</table>

<div id="tabla">

</div>

</div>

<div id="resultado"></div>

</center>

</body>

</html>
Derivadas de Newton 1.2
<html lang="es">

<head>

<title>Programa de Derivadas de Newton</title>

<script type="text/javascript" src="metodos.js"></script>

<link rel="stylesheet" type="text/css" href="style.css">

<style type="text/css">

.nav{height: 55px;}

.nav td{padding-left: 60px;}

.nav a{text-decoration: none;}

.enlace{font-size: 40px;margin-left: -40px;margin-top: -8px;cursor: pointer;}

.input{

border-radius:5px;

font-size:20px;

height:30px;

background:#fafafa;

border:1px solid #c8c8c8;

-webkit-box-shadow:0 1px 0 0 rgba(255,255,255,0.6),inset 0 0 3px 0


rgba(0,0,0,0.1);

-webkit-box-sizing:border-box;

font:italic 300 1rem/1.6rem Georgia,Cambria,"Times New


Roman",Times,serif;

padding:5px 12px;

vertical-align:top;

margin:10px;

-webkit-font-smoothing:antialiased;

-webkit-transition:all 0.7s;

</style>
</head>

<body onload="setOption(2)">

<div class="title">

<span class="ilogo" style="font-size: 70px;margin-left: -80px;margin-top: -


15px;">&#xe619</span>

<center><br>Metodos numericos</br></center>

</div>

<center>

<table class="menu">

<tr>

<th colspan="6" class="menu_title"><br>Newton


Progresiva</br></th>

</tr>

</table>

</center>

<center>

<table class="menu nav">

<html>

<title>Newton Rhapson Derivadas</title>

<style>

.blink {color:red; margin-right:0px; border-left: solid 5px red;}

</style>

<br> Metodos Numericos </br>

<style>
.lupa {background: url("icons/glass.png") no-repeat 0 0; background-size: auto 100%;
width:30px; height:30px;}

#calc .lupa{background: none; border: solid 1px; background-color:#AAA;}

.go {background: url("icons/done.png") no-repeat 0 0; background-size: 100% 100%;}

.open img{width:30px;}

</style>

<script type="text/x-mathjax-config">

MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () {

var TEX = MathJax.InputJax.TeX;

var PREFILTER = TEX.prefilterMath;

TEX.Augment({

prefilterMath: function (math,displaymode,script) {

math = "\\displaystyle{"+math+"}";

return PREFILTER.call(TEX,math,displaymode,script);

});

});

</script>

<script type="text/x-mathjax-config">

MathJax.Hub.Config({

extensions: ["tex2jax.js"],

jax: ["input/TeX", "output/HTML-CSS"],

tex2jax: {

inlineMath: [ ['$','$'], ["\\(","\\)"] ],

displayMath: [ ['$$','$$'], ["\\[","\\]"] ],

skipTags: ["script","noscript","style","textarea","code"],
processEscapes: true

},

"HTML-CSS": { availableFonts: ["TeX"] }

});

</script>

<!--

<script type="text/javascript"

src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-
MML_HTMLorMML">

</script>

-->

<script type="text/javascript"

src="http://um.mendelu.cz/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML">

</script>

<script type="text/javascript">

var thedata;

var newwin;

var thenumber;

function edit(textarea)

thenumber = textarea;

thedata = document.forms['exampleform'].elements[textarea].value

newwin =

window.open("MAW_dragmath.html","","width=600,height=450,resizable=1,menubar=1,scrol
lbars=1")

}
function previewb(textarea)

server="http://um.mendelu.cz/maw";thenumber = textarea;

thedata = document.forms['exampleform'].elements[textarea].value;

jQuery.facebox({

ajax :
server+"/common/formconv.php?lang=es&expr="+encodeURIComponent(document.forms['e
xampleform'].elements[textarea].value)});

function previewb_int2(textarea)

server="http://um.mendelu.cz/maw"; thedata =
server+"/common/formconv.php?lang=es&expr="+encodeURIComponent(document.forms['e
xampleform'].elements[textarea].value)+"&a="+encodeURIComponent(document.forms['exa
mpleform'].elements['a'].value)+"&b="+encodeURIComponent(document.forms['exampleform
'].elements['b'].value)+"&c="+encodeURIComponent(document.forms['exampleform'].elemen
ts['c'].value)+"&d="+encodeURIComponent(document.forms['exampleform'].elements['d'].val
ue)+"&vars="+encodeURIComponent(document.forms['exampleform'].elements['vars'].value);

jQuery.facebox({ ajax : thedata });

function preview_region(textarea)

server="http://um.mendelu.cz/maw"; thedata =
server+"/common/formconv.php?lang=es&expr="+encodeURIComponent(document.forms['e
xampleform'].elements['funkce'].value)+"&xmin="+encodeURIComponent(document.forms['e
xampleform'].elements['xmin'].value)+"&xmax="+encodeURIComponent(document.forms['exa
mpleform'].elements['xmax'].value)+"&ymin="+encodeURIComponent(document.forms['exam
pleform'].elements['ymin'].value)+"&ymax="+encodeURIComponent(document.forms['exampl
eform'].elements['ymax'].value)+"&a="+encodeURIComponent(document.forms['examplefor
m'].elements['a'].value)+"&b="+encodeURIComponent(document.forms['exampleform'].elem
ents['b'].value)+"&c="+encodeURIComponent(document.forms['exampleform'].elements['c'].v
alue)+"&d="+encodeURIComponent(document.forms['exampleform'].elements['d'].value)+"&
vars="+encodeURIComponent(document.forms['exampleform'].elements['vars'].value)+"&regi
on=1";

jQuery.facebox({ ajax : thedata });

}
function preview_function(textarea)

server="http://um.mendelu.cz/maw"; thedata =
server+"/prubeh/zpracuj.php?lang=es&funkce="+encodeURIComponent(document.forms['exa
mpleform'].elements['funkce'].value)+"&xmin="+encodeURIComponent(document.forms['exa
mpleform'].elements['xmin'].value)+"&xmax="+encodeURIComponent(document.forms['exam
pleform'].elements['xmax'].value)+"&ymin="+encodeURIComponent(document.forms['exampl
eform'].elements['ymin'].value)+"&ymax="+encodeURIComponent(document.forms['examplef
orm'].elements['ymax'].value)+"&output=png";

jQuery.facebox("<img alt='Processing image ...' src='"+thedata+"'>");

function preview_curve(textarea)

server="http://um.mendelu.cz/maw"; thedata =
server+"/gnuplot/curve.php?lang=es&x="+encodeURIComponent(document.forms['examplefo
rm'].elements['x'].value)+"&y="+encodeURIComponent(document.forms['exampleform'].elem
ents['y'].value)+"&z="+encodeURIComponent(document.forms['exampleform'].elements['z'].v
alue)+"&tmin="+encodeURIComponent(document.forms['exampleform'].elements['tmin'].valu
e)+"&tmax="+encodeURIComponent(document.forms['exampleform'].elements['tmax'].value)
;

jQuery.facebox({ ajax : thedata });

function allow_preview(text)

if ((text=='dx dy')||(text=='dy dx')||(text=='r dr dphi')||(text=='r dphi dr'))

{document.getElementById('preview_region').style.display="inline";}

else

{document.getElementById('preview_region').style.display="none";}

</script>
<style>

#calc .tlacitko {padding:3px; border: solid 1pt; margin-top:10px; margin-bottom:10px; margin-


right:10px; display:inline-block; min-width:2em; text-align:center; background-color:#DDD;
min-height:8px;}

.open {color:#080; padding-left:3px; padding-right:3px; font-size:160%;}

#calc {background-color:#EEE; padding:10px; position:fixed;

top:5px;

z-index:100; display:none;

box-shadow: black 4px 6px 20px;

-webkit-box-shadow: black 4px 6px 20px;

-moz-box-shadow: black 4px 6px 20px;

width:95%;

min-height:90%;

#enter .tlacitko, .tlacitko img , #prompt img{border:none; background-color: transparent;


width: 40px; vertical-align:middle;}

#calc .tlacitko {height:25px; vertical-align:top;}

.editor {display:none;}

#vystup {color:blue; font-size:125%; background-color:#CCC; padding:5px; margin-


bottom:10px; padding-bottom:5px; border: solid 1px;}

</style>

<link rel="stylesheet" type="text/css" href="two_column.css" ></head>

<body>

<div id="overDiv" style="position:absolute; visibility:hidden; z-index:1000;"></div>

<noscript> <b style="color: rgb(255, 0, 0);">

Debe tener habilitado JavaScript para poder ver los mensajes emergentes</b> </noscript>
<div id="calc">

<div style="text-align:right;">

<span class="tlacitko" data-text="Close" style="margin-right:0px; margin-left:auto;


border:none; background-color:transparent; color:red;">&#x2718;</span></div>

<span id="prompt"><img src="icons/prompt.png"></span> <span id="vystup"></span>

<br>

<br>

<span class="tlacitko" data-text="0">0</span>

<span class="tlacitko" data-text="1">1</span>

<span class="tlacitko" data-text="2">2</span>

<span class="tlacitko" data-text="3">3</span>

<span class="tlacitko" data-text="4">4</span>

<span class="tlacitko" data-text="5">5</span>

<span class="tlacitko" data-text="6">6</span>

<span class="tlacitko" data-text="7">7</span>

<span class="tlacitko" data-text="8">8</span>

<span class="tlacitko" data-text="9">9</span>

<span class="tlacitko" data-text=".">.</span>

<br>

<span class="tlacitko" data-text="+">+</span>

<span class="tlacitko" data-text="-">-</span>

<span class="tlacitko" data-text="*">*</span>

<span class="tlacitko" data-text="/">/</span>

<span class="tlacitko" data-text="^">^</span>

<br>
<span class="tlacitko" data-text="()">( )</span>

<span class="tlacitko" data-text='['>[</span>

<span class="tlacitko" data-text=']'>]</span>

<span class="tlacitko" data-text="=">=</span>

<span class="tlacitko" data-text="x">x</span>

<span class="tlacitko" data-text="y">y</span>

<span class="tlacitko" data-text="pi">$\pi$</span>

<span class="tlacitko" data-text="e">e</span>

<br>

<span class="tlacitko" data-text="sqrt()">$\sqrt{}$</span>

<span class="tlacitko" data-text="sin()">sin</span>

<span class="tlacitko" data-text="cos()">cos</span>

<span class="tlacitko" data-text="tan()">tan</span>

<span class="tlacitko" data-text="cot()">cot</span>

<span class="tlacitko" data-text="ln()">ln</span>

<span class="tlacitko" data-text="exp()">exp</span>

<span class="tlacitko" data-text="asin()">asin</span>

<span class="tlacitko" data-text="acos()">acos</span>

<span class="tlacitko" data-text="atan()">atan</span>

<br>

<span class="tlacitko" data-text="<-">&larr;</span>

<span class="tlacitko" data-text="BackSpace">BckSp</span>

<span class="tlacitko" data-text="->">&rarr;</span>

&nbsp;&nbsp;&nbsp;

&nbsp;&nbsp;&nbsp;

<span class="tlacitko" data-text="Clear">Clear</span>


&nbsp;&nbsp;&nbsp;

&nbsp;&nbsp;&nbsp;

<div id="enter" style="text-align:right; display:inline">

<span class="tlacitko" data-text="Enter"><img src="icons/done.png" alt="OK"></span>

</div>

</div>

<div id="main">

<div id="head">

<div id="flags" class="no-print">

<div id="flags-left">

<div id="mawcustom"><!-- <div style="padding-left:5%;"><br><br><br><h3


style="color:gray;">MAW has been moved to a new server few hours or days ago. Please,
report problems, if any, to marik@mendelu.cz.

Thanks</h3></div> -->

<span class="nadpis">

<b>Metodo Newton Raphson</b></span>

<div id='form' style='display:block;'><form name="exampleform" id="exampleform"

method="post" action="http://um.mendelu.cz/maw/banach/banach.php">
<input type="hidden" name="lang" value="es"><input type="hidden" name="ip"
value=""><input type="hidden" name="referer" value="https://www.google.com/"><input
type="hidden" name="method" value="newton">

<label for="funkce">

Ingresa la funcion, numero inicial de aproximaciones.</label>

<br>

Función: <input size="60" name="funkce" id="in-funkce"

value="2*x^2-cos(x)">

<input value="Editor" onclick="edit('funkce')" type="button" class="tlacitko editor">

<input value="Vista Previa" title="Presionando este botón se puede ver como formconve
genera su expresión y como puede ingresar esta función en notación de Maxima (puedes
usarlo para copiar y pegar en el formulario)" onclick="previewb('funkce')" type="button"
class="tlacitko">

<br>

Interval for picture from

<input size="6" name="a" value="0.5" id="in-a">

&nbsp; hasta &nbsp;

<input size="6" name="b" value="1.1" id="in-b">

&nbsp;(números enteros o decimales)

<br>

Número de pasos

<input size="4" name="n" value="10" id="in-n">

(entero entre 2 y 40) <br><br>

Aproximación inicial

<input size="10" name="c" value="1" id="in-c">

(número entero o decimal)

<br>

<input value="Enviar" name="tlacitko" type="submit" class="tlacitko" id="myButton">


<div id='after-form' style='display:none;'>Su entrada esta siendo procesada. Espere unos
segundos para ver la salida. Haga click <a href="#" onclick="document.getElementById('after-
form').style.display='none';document.getElementById('form').style.visibility='visible';"> aquí
</a> para reabrir el formulario que se ha enviado.</div><script
type="text/javascript">document.getElementById('after-form').style.display='none';</script>

<script>

window.onload = function() {

$("#in-funkce").tooltip({ content: '<img


src="http://um.mendelu.cz/mathtex/mathtex.php?{\\color{red}f(x)}=x">' });

$("#e-1").tooltip({ content: '<img


src="http://um.mendelu.cz/mathtex/mathtex.php?\\cos(x)=0">' });$("#e-1").bind("click",
function() {$("#exampleform")[0].reset();$("#in-funkce").val("cos(x)");$("#in-
a").val("0");$("#in-b").val("2");$("#in-n").val("10");$("#in-
c").val("1");$("#exampleform").submit();});$("#e-2").tooltip({ content: '<img
src="http://um.mendelu.cz/mathtex/mathtex.php?x^3+2x-2&=0">' });$("#e-2").bind("click",
function() {$("#exampleform")[0].reset();$("#in-funkce").val("x^3+2*x-2");$("#in-
a").val("0.7");$("#in-b").val("1");$("#in-n").val("10");$("#in-
c").val("1");$("#exampleform").submit();});$("#e-3").tooltip({ content: '<img
src="http://um.mendelu.cz/mathtex/mathtex.php?x^5+3x^2-20&=0">' });$("#e-
3").bind("click", function() {$("#exampleform")[0].reset();$("#in-funkce").val("x^5+3*x^2-
20");$("#in-a").val("0.7");$("#in-b").val("2.6");$("#in-n").val("10");$("#in-
c").val("1");$("#exampleform").submit();});$("#e-4").tooltip({ content: '<img
src="http://um.mendelu.cz/mathtex/mathtex.php?e^{-2x}+x-3&=0">' });$("#e-4").bind("click",
function() {$("#exampleform")[0].reset();$("#in-funkce").val("exp(-2*x)+x-3");$("#in-a").val("-
1");$("#in-b").val("0");$("#in-n").val("10");$("#in-c").val("-
1");$("#exampleform").submit();});$("#e-5").tooltip({ content: '<img
src="http://um.mendelu.cz/mathtex/mathtex.php?e^{x^2}+e^{x}&=4">' });$("#e-
5").bind("click", function() {$("#exampleform")[0].reset();$("#in-funkce").val("exp(x^2)+exp(x)-
4");$("#in-a").val("0.6");$("#in-b").val("1");$("#in-n").val("10");$("#in-
c").val("1");$("#exampleform").submit();});}

</script>

</div>

<div id="history"><a rel="facebox"


href="http://um.mendelu.cz/maw/common/tail.php?dir=newton">Historial</a></div>

<div id="comments">
<script>

$('#after-form').append("<center><br><img src=\"working.gif\"></center>");

div1 = $('#form');

div2 = $('#after-form');

tdiv1 = div1.clone();

tdiv2 = div2.clone();

div1.replaceWith(tdiv2);

div2.replaceWith(tdiv1);

if (navigator.userAgent.match(/msie/i) )

{alert("Microsoft Internet Explorer gives poor resutls when using this site. This will be fixed in
next months. Now you can try Firefox or Chrome instead. Thanks. \n\n\n Zdá se, že používáte
Microsoft Internet Explorer. Tento prohlížec nepracuje správne s webem MAW. Než bude
problém opraven, zkuste prosím Firefox nebo Chrome.");}

//alert ($.browser);

</script>

<script>

$(document).ready(function() {

$("#myButton").focus();

});
$("#exampleform").submit(function(e)

$("#mawoutput").slideUp();

$("#maw_calculator").css("background-color","#CCC");

var postData = $(this).serializeArray();

var formURL = $(this).attr("action");

$.ajax(

url : formURL,

cache: true,

type: "POST",

data : postData,

success:function(data, textStatus, jqXHR)

var ct = jqXHR.getResponseHeader("content-type");

if (ct != "application/json") {//jQuery.facebox(data);

if (data.match(/MAWerror/i))

$("#mawoutput").html("<div class=outputdata><span id=go-top class='no-


print'><img src=arrow_up_red.png width=30></span>"+data+"</div>");

$(".outputdata").css("border-color","#F00");

//data = "<div style='margin-left:auto; margin-right:10px;'><img src=fail.png


width=90></div>" + data;

else

$("#mawoutput").html("<div class=outputdata><span id=go-top class=no-


print><img src=arrow_up.png width=30></span>"+data+"</div>");

$(".outputdata").css("border-color","#5FCC06");
}

MathJax.Hub.Queue(["Typeset",MathJax.Hub]); //,function () {velikost();},function ()


{velikost();});

$("#mawoutput").fadeIn(1000);

var position = $("#mawoutput").position();

//scroll(0,position.top);

$("body").animate({scrollTop : position.top, duration: 1000});

$("#go-top").click(function() {$("body").animate({scrollTop : 0});});

else

//alert (data.data+" "+data.file);

url="http://um.mendelu.cz/dev-
maw/common/maw_download.php?file="+data.file+"&filename="+data.data;

//alert (url);

jQuery('<form action="http://um.mendelu.cz/dev-
maw/common/maw_download.php" method="post"><input type="hidden" name="file"
value="'+ data.file +'"/><input type="hidden" name="filename" value="'+ data.data
+'"/>submit<input type="submit"
value="odeslat"></form>').appendTo('body').submit().remove();

//jquery("#odkaz").remove();

//jQuery("<a id=\"odkaz\" href=http://um.mendelu.cz/dev-


maw/cache/"+data.data+">stahnout</a>").appendTo('body');

setTimeout(function() {

$("#after-form").css("display","none");

$("#form").css("display","block");

$("#form").css("visibility","visible");

$("#maw_calculator").css("background-color","#5FCC06");

$("#maw_calculator").css("min-width","95%");

$("#maw_calculator").css("margin-left","3px");

}, 1500);

},

error: function(jqXHR, textStatus, errorThrown)


{

alert("There seem to be some technical problems. Please, report to


marik@mendelu.cz. Thanks.");//if fails

});

e.preventDefault(); //STOP default action

});

MathJax.Hub.Queue(function () {

velikost();

});

function velikost ()

/* 8.11.2013 Robert Marik: nastaveni stejne vysky pro class "blok" pokud jsou ve
stejne vysce*/

bloky=$(".inlinediv .logickyBlok");

for (var i=0;i<bloky.length;i++)

//tento=bloky.eq(i).width();

//rodic=bloky.eq(i).parent().parent().width();

//if ((tento/rodic)<0.45)

//{bloky.eq(i).width(0.45*rodic);}

//else

//{bloky.eq(i).width(0.95*rodic);}

//alert("Under construction: "+rodic);

bloky.eq(i).parent().css( { marginLeft : "auto", marginRight : "auto" } )

for (var i=0;i<bloky.length-1;i++)

{
ted = bloky.eq(i).position().top;

dalsi = bloky.eq(i+1).position().top;

if ( (Math.abs(ted-dalsi)<5) && ($('img').closest(bloky.eq(i)).length ==0) &&


($('img').closest(bloky.eq(i+1)).length ==0) )

max1=bloky.eq(i).height();

max2=bloky.eq(i+1).height();

max=Math.max(max1,max2);

bloky.eq(i).height(max);

bloky.eq(i+1).height(max);

//alert("Under construction");

</script>

</div>

</div>

<div id="maw_tail">

</div>

</div>

<div id=clear style="clear:both;">

</div>

<div id=mawoutput> </div>


<style>

.responsive-container { position: relative; padding-bottom: 56.25%; height: 0; overflow:


hidden; }

.responsive-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.cetered-div{ max-width:600px; margin-left:auto; margin-right:auto; display:inline-div;}

.border {border-width:1px; border-style: dashed; border-color: gray; padding:10px;


background-color:white;}

.popisek {margin-left:auto; margin-right:auto; margin-bottom:10px; font-weight:bold;}

.popisekp {margin-top:0px; margin-bottom:0px;}

.wrapper{padding-top:10px;}

#one {

float:left;

margin-right:20px;

width:500px;

#one .border {margin-bottom:30px; margin-left:3px;}

#two {

overflow:hidden;

#two .imgdiv {width:60%; max-width:300px !important; margin-left:auto; margin-right:auto;


msrgin-top:10px;}

.imgdiv img {width:100% !important;}


@media screen and (max-width: 600px) {

#one {

float: none;

margin-right:0;

width:auto;

border:0;

border-bottom:2px solid gray;

border-top:2px solid gray;

</style>

<div class="wrapper no-print">

<div id="one">

<div class="cetered-div border">

<div id="two">

</body>

</html>
<script>

$(".pdforhtml").css("display","inline-block");

</script>

<script>

$(".pdforhtml").css("display","none");

$(".pdfyeshtmlno").css("display","none");

$(".pdfnohtmlyes").css("display","none");

</script>

<div style="clear:both;"></div>

<div class="share-container">

<!-- <li class="rrssb-reddit">

<a href="">

<span class="rrssb-icon">

<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 28


28">

<path d="M11.794 15.316c0-1.03-.835-1.895-1.866-1.895-1.03 0-1.893.866-1.893


1.896s.863 1.9 1.9 1.9c1.023-.016 1.865-.916 1.865-1.9zM18.1 13.422c-1.03 0-1.895.864-1.895
1.895 0 1 .9 1.9 1.9 1.865 1.03 0 1.87-.836 1.87-1.865-.006-1.017-.875-1.917-1.875-
1.895zM17.527 19.79c-.678.68-1.826 1.007-3.514 1.007h-.03c-1.686 0-2.834-.328-3.51-1.005-
.264-.265-.693-.265-.958 0-.264.265-.264.7 0 1 .943.9 2.4 1.4 4.5 1.402.005 0 0 0 0 0 .005 0 0 0
0 0 2.066 0 3.527-.46 4.47-1.402.265-.264.265-.693.002-.958-.267-.334-.688-.334-.988-.043z"

/>
<path d="M27.707 13.267c0-1.785-1.453-3.237-3.236-3.237-.792 0-1.517.287-
2.08.76-2.04-1.294-4.647-2.068-7.44-2.218l1.484-4.69 4.062.955c.07 1.4 1.3 2.6 2.7 2.555
1.488 0 2.695-1.208 2.695-2.695C25.88 3.2 24.7 2 23.2 2c-1.06 0-1.98.616-2.42 1.508l-4.633-
1.09c-.344-.082-.693.117-.803.454l-1.793 5.7C10.55 8.6 7.7 9.4 5.6 10.75c-.594-.45-1.3-.75-
2.1-.72-1.785 0-3.237 1.45-3.237 3.2 0 1.1.6 2.1 1.4 2.69-.04.27-.06.55-.06.83 0 2.3 1.3 4.4 3.7
5.9 2.298 1.5 5.3 2.3 8.6 2.325 3.227 0 6.27-.825 8.57-2.325 2.387-1.56 3.7-3.66 3.7-5.917 0-
.26-.016-.514-.05-.768.965-.465 1.577-1.565 1.577-2.698zm-4.52-9.912c.74 0 1.3.6 1.3 1.3 0
.738-.6 1.34-1.34 1.34s-1.343-.602-1.343-1.34c.04-.655.596-1.255 1.396-1.3zM1.646 13.3c0-
1.038.845-1.882 1.883-1.882.31 0 .6.1.9.21-1.05.867-1.813 1.86-2.26 2.9-.338-.328-.57-.728-
.57-1.26zm20.126 8.27c-2.082 1.357-4.863 2.105-7.83 2.105-2.968 0-5.748-.748-7.83-2.105-
1.99-1.3-3.087-3-3.087-4.782 0-1.784 1.097-3.484 3.088-4.784 2.08-1.358 4.86-2.106 7.828-
2.106 2.967 0 5.7.7 7.8 2.106 1.99 1.3 3.1 3 3.1 4.784C24.86 18.6 23.8 20.3 21.8 21.57zm4.014-
6.97c-.432-1.084-1.19-2.095-2.244-2.977.273-.156.59-.245.928-.245 1.036 0 1.9.8 1.9 1.9-
.016.522-.27 1.022-.57 1.327z"

/>

</svg>

</span>

<span class="rrssb-text">reddit</span>

</a>

</li> -->

<!-- <li class="rrssb-hackernews">

<a
href="https://news.ycombinator.com/submitlink?u=http://www.kurtnoble.com/labs/rrssb/&t
=Check%20out%20how%20ridiculously%20responsive%20these%20social%20buttons%20are&
text=Check%20out%20how%20ridiculously%20responsive%20these%20social%20buttons%20
are">

<span class="rrssb-icon">

<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 28


28">

<path fill="#FFF" d="M14 13.626l-4.508-9.19H6.588l6.165 12.208v6.92h2.51v-


6.92l6.15-12.21H18.69" />

</svg>

</span>

<span class="rrssb-text">hackernews</span>

</a>

</li> -->

<!-- Replace href with your meta and URL information. -->
</div>

<div style="clear:both;"></div>

<script src="js/rrssb.min.js"></script>

<table>

</center>

<center>

<div class="uno">

<table>

<tr>

<td class="iletter2" style="font-size:20px;font-weight:


bolder;">x:</td>

<td class="iletter2" style="font-size:20px;font-weight:


bolder;">y:</td>

<td class="iletter2" style="font-size:20px;font-weight:


bolder;">n:</td>

</tr>

<tr>

<td><input type="text" id="x" class="input"


style="width:180px;" placeholder="Valor de Prueba"></td>

<td><textarea id="y" class="input" spellcheck='false'


style="width:250px;height:50px;" placeholder="Escriba la funcion en JS"></textarea></td>

<td><input type="text" id="n" class="input"


style="width:180px;" placeholder="Cantidad de Datos"></td>

<td><input type="button" value="Generar"


onclick="generar2()"></td>

</tr>

</table>

<div id="tabla">
</div>

</div>

<div id="resultado"></div>

</center>

</body>

</html>

Вам также может понравиться