create account

Interpolación Polinomial usando el entorno GNU Octave | 2da Parte by abdulmath

View this thread on: hive.blogpeakd.comecency.com
· @abdulmath · (edited)
$10.82
Interpolación Polinomial usando el entorno GNU Octave | 2da Parte
<div class="text-justify">
<div class="pull-left"><img src="https://cdn.steemitimages.com/DQmRxPdiuBR1FynxRZ4BznxJDNfkq9dBasuJZCaGVjdKvcE/Interpolaci%C3%B3n.png"><center><sub>Imagen editada con GIMP, gráficos hechos con GNU Octave. Elaborada por @abdulmath.</sub></center></div> Saludos queridos lectores, bienvenidos nuevamente a mi Blog. En está oportunidad les hablare un poco acerca de <b>Interpolación Polinomial usando el entorno GNU Octave | 2<sup>da</sup> Parte</b>, aquí continuaremos con la segunda parte de tema, donde mostraremos la aproximación de Newton y propiedades. La misma está dirigida al público en general (aunque debemos acotar, este es un tema de un nivel más alto, para el que es necesario tener de algunos conocimientos previos de análisis real, cálculo avanzado, entre otros más), con atención especial a profesionales y estudiantes universitarios en ciencias, ingeniería y carreras afines. Estoy abierto a sus comentarios y dudas que puedan surgir en el desarrollo del mismo. Sin perder más tiempo, iniciemos.

<hr>
https://cdn.steemitimages.com/DQmWc6PNwWG3TTTx9BQoTy4a8M7nVh88YMQAwVFjX6msEFD/SeparadorStem.png
<hr>

<h1><div class="phishy">La representación de Newton</div></h1>

Vamos a mostrar una manera de construir un interpolador polinomial, el cual es generalmente de mucha mayor utilidad que el interpolador polinomial de Vandermonde, el mismo pueden verlo en <a href="https://steemit.com/steemstem/@abdulmath/interpolacion-polinomial-usando-el-entorno-gnu-octave-or-1era-parte">Interpolación Polinomial usando el entorno GNU Octave | 1era Parte.</a>


<h3><div class="phishy">Un ejemplo de 4 puntos</div></h3>

Para hacer una introducción y motivar la idea, consideremos una vez más el problema de interpolar cuatro puntos, a saber <b>(x<sub>1</sub>, y<sub>1</sub>),</b> <b>(x<sub>2</sub>, y<sub>2</sub>),</b> <b>(x<sub>3</sub>, y<sub>3</sub>),</b> y <b>(x<sub>4</sub>, y<sub>4</sub>),</b> con un polinomio cúbico <b>p<sub>3</sub>(x)</b>. Sin embargo, en lugar de expresar el interpolador en términos de la base canónica <b>B = { 1, x, x<sup>2</sup>, x<sup>3</sup> },</b> usamos la base <b>B' = { 1, (x - x<sub>1</sub>), (x - x<sub>1</sub>)(x - x<sub>2</sub>), (x - x<sub>1</sub>)(x - x<sub>2</sub>)(x - x<sub>3</sub>) }</b>. Esto se traduce a encontrar los coeficientes <b>c<sub>1</sub></b>, <b>c<sub>2</sub></b>, <b>c<sub>3</sub></b> y <b>c<sub>4</sub></b> tal que
<center>
https://cdn.steemitimages.com/DQma8LiFikTpSScwY6ED2Kn5jdUag9c1bFBPUQTYmssPvrH/equation00.png</center>
entonces <b>y<sub>i</sub> = p<sub>3</sub>(x<sub>i</sub>)</b> para <b>i = 1 : 4</b>. Si expresamos de forma expandida, estas cuatro ecuaciones lo que tenemos es
<center>
https://cdn.steemitimages.com/DQmcXJYBRJK8xuqjoJkv1gfXjDz8EzKsUbF3KWcU1rxj4q9/equation01.png</center>
Al reorganizar estas ecuaciones, obtenemos el siguiente proceso de solución de cuatro pasos:
<center>
https://cdn.steemitimages.com/DQmeYwrp6qoZBxZPVbXQC7QDMvh2rZQBLwdoTHcke2L3too/equation02.png</center>
Este proceso de solución secuencial es posible debido a la elección inteligente de la base de polinomios, y el resultado es el que se conoce como la representación de Newton del polinomio de interpolación.

Para establecer el escenario para el algoritmo en el caso general de <b>n</b> puntos, expresemos el caso <b>n = 4</b> usando la notación matricial-vectorial, para así descubrir una serie de simplificaciones.

El punto de partida es el sistema de ecuaciones que obtuvimos anteriormente el cual se puede expresar de la siguiente manera:
<center>
https://cdn.steemitimages.com/DQmbU9nQkryFAx9PHQ7jBxFbHJ3gKPpeRQygZFKuAvUtQa9/equation03.png</center>
Como podemos apreciar inmediatamente que <b>c<sub>1</sub> = y<sub>1</sub></b>. Así, podemos eliminar <b>c<sub>1</sub></b> de la segunda, tercera y cuarta ecuación, al restar la ecuación 1 de dichas ecuaciones obteniendo así:
<center>
https://cdn.steemitimages.com/DQmaJvLmRUd8QmzymwuNVkiGvttnNDDuvR6ge9rbZazoEDR/equation04.png</center>
Si dividimos las ecuaciones 2, 3 y 4 por <b>(x<sub>2</sub> - x<sub>1</sub>)</b>, <b>(x<sub>3</sub> - x<sub>1</sub>)</b> y <b>(x<sub>4</sub> - x<sub>1</sub>)</b> respectivamente, entonces el sistema se transforma en
<center>
https://cdn.steemitimages.com/DQmTwdqNVGaFNfFWdEN9LAYWNpPyNAGU7UZmCZqYnmRACHG/equation05.png</center>
donde <b>y<sub>21</sub></b>, <b>y<sub>31</sub></b>, <b>y<sub>41</sub></b> están dados por
<center>
https://cdn.steemitimages.com/DQmduzsezoWfvGi8NCyLHxQHxn3MGaourFDw9oq1jDNvcJ4/equation06.png</center>
Notemos que
<center>
https://cdn.steemitimages.com/DQmasxAMtepGgz4iPkbXYyN74drMh8H5XUoWD5PmQv67iPZ/equation07.png</center>
Uno de los puntos claves en la resolución del sistema, es que hemos reducido en una dimensión el problema, así que tenemos un sistema <b>3 x 3</b> el cual debemos resolver, a saber:
<center>
https://cdn.steemitimages.com/DQmNr1aDeWVLTNkcMgrYHybJovbNPoTkbeMBwjJSRifQ4yJ/equation08.png</center>
Este sistema es exactamente el que se obtiene cuando se buscan los coeficientes del polinomio de interpolación cuadrática
<center>
https://cdn.steemitimages.com/DQmVDDC7ZtbFQKpuqEyBob8emYZbbXt2u9yLEDCTKUkZKPH/equation09.png</center>
que interpola los puntos <b>(x<sub>2</sub>, y<sub>2</sub>),</b> <b>(x<sub>3</sub>, y<sub>3</sub>),</b> <b>(x<sub>4</sub>, y<sub>4</sub>).</b>

<hr>
https://cdn.steemitimages.com/DQmf8QX7UJQgWvMr1EddqP1GYriGuMBg9SdeNSAjS2pToQo/SeparadorGMath06.png
<hr>

<h3><div class="phishy">El caso general de n puntos</div></h3>

Para el caso general de <b>n</b> puntos, vemos que si <b>c<sub>1</sub> = y<sub>1</sub></b> y 
<center>
https://cdn.steemitimages.com/DQmWoKSScWzdsVxNbea2Vtk44z24bNhBm35ETv8UCD4PLhP/equation10.png</center>
interpola los puntos
<center>
https://cdn.steemitimages.com/DQmeYmjaowpuXs5GcABTqKqQLcLopF9rWeCpvATXjWX75Ni/equation11.png</center>
entonces
<center>
https://cdn.steemitimages.com/DQmXcEe326H2FchCrwMbG7hsyjKSjstRinbHLeXXANNzCiB/equation12.png</center>
interpola los puntos <b>(x<sub>1</sub>, y<sub>1</sub>),</b> <b>(x<sub>2</sub>, y<sub>2</sub>), . . . , (x<sub>n</sub>, y<sub>n</sub>).</b> Esto es fácil de verificar. De hecho, para <b>j = 1:n</b>
<center>
https://cdn.steemitimages.com/DQmUi4CsBfy56AMcXdSVc351c4PuYjxBKepW2VV4DbM5Bac/equation13.png</center>
Así, esto nos suministra las herramientas para una formulación recursiva de todo el proceso:
<center>
https://cdn.steemitimages.com/DQmWaXCGo2wyZ7n5WmEVKum2Qq8Wii7XtKcpQ4PeyQEhKTh/equation14.png
<sub>Función recursiva de la representación de Newton. Elaborado por @abdulmath.</sub></center>
Si <b>n = 1</b>, entonces el interpolador que devuelve el proceso recursivo es constante <b>p(x) = y<sub>1</sub></b>, es decir, <b>c<sub>1</sub> = y<sub>1</sub>. En caso contrario, el vector final es un arreglo de <b>y<sub>1</sub></b> y de la solución al problema reducido. La llamada recursividad obtiene los coeficientes del interpolador <b>q(x)</b> mencionado anteriormente.

Para desarrollar una implementación no recursiva, volvemos a nuestro ejemplo de cuatro puntos y la ecuación matricial siguiente
<center>
https://cdn.steemitimages.com/DQmVAUidgX2tktsbCTHEZXGbzJ5jgVWvnWvMhWaFkLwuSvn/equation15.png</center>
Así, podemos ver que <b>c<sub>2</sub> = y<sub>21</sub>. Primero si restamos la fila 3 con la fila 2 y dividimos por <b>(x<sub>3</sub> - x<sub>2</sub>)</b>, y luego restamos la fila 4 con la fila 2 y dividimos por <b>(x<sub>4</sub> - x<sub>2</sub>)</b>, obtenemos lo siguiente:
<center>
https://cdn.steemitimages.com/DQmUaERuwwrrUYpYSo3JeMgErB4d2E6iReRKtukriPxwimt/equation16.png</center>
donde
<center>
https://cdn.steemitimages.com/DQmTVfnkrgHpunJeLbgF1bGjYX296hBWYfMyQxAokuVL1x7/equation17.png</center>
Ahora bien, en este punto <b>c<sub>3</sub> = y<sub>321</sub></b>. Finalmente si restamos la cuarta fila con la tercera y dividimos por <b>(x<sub>4</sub> - x<sub>3</sub>)</b>, obtenemos
<center>
https://cdn.steemitimages.com/DQmSesDatVyDQ7bZNBy5ux9pchdcDUD4jAZ1A3HxYifsuQv/equation18.png</center>
donde
<center>
https://cdn.steemitimages.com/DQmcgNojKkkLuKDdkuQbTvwrxnCn7jN99TZLjbEVmWDHhhf/equation19.png</center>
Claramente <b>c<sub>4</sub> = y<sub>4321</sub>. El patrón para el caso general de <b>n</b> puntos es evidente:
<center>
https://cdn.steemitimages.com/DQmc5Az4gEw5rsYWRU1vduLjdBGE4s6kQuJX1y5J477rdNE/equation20.png
<sub>Script patrón del caso general. Elaborado por @abdulmath en GNU Octave.</sub></center>
Sin embargo, al actualizar las ecuaciones solo necesitamos hacer un seguimiento de los cambios en el vector y. Por ejemplo,
<center>
https://cdn.steemitimages.com/DQmdfWrQX4drnuA5f1Vy7oAZmLD8e2NwiWWgBegW4nDqu5J/equation21.png</center>
Esto lleva a
<center>
https://cdn.steemitimages.com/DQmZGoFQBqEL5noHJHJX7LT7nyvV88sC8VuwHF8kDvuoAed/equation22.png
<sub>Función de Interpolación de Newton. Elaborado por @abdulmath en GNU Octave.</sub></center>

<hr>
https://cdn.steemitimages.com/DQmPnBhU5HQSQmw2dm6ADEJMjKCc68KtUiUbkjyXZ5nvm5i/SeparadorGMath14.png
<hr>

<h3><div class="phishy">Multiplicación Anidada</div></h3>

Al igual que con la representación de Vandermonde, la representación de Newton permite un esquema de multiplicación anidada eficiente. Por ejemplo, para evaluar <b>p<sub>3</sub>(x)</b> en <b>x = z</b>, tenemos el anidamiento siguiente
<center>
https://cdn.steemitimages.com/DQmTitcEmZFLfmfw6TqjWShaVGLAYRTpUFiWkEBFpy6oPR6/equation23.png</center>
El fragmento
```pval = c(4);```
```pval = (z-x(3))*pval+c(3);```
```pval = (z-x(2))*pval+c(2);```
```pval = (z-x(1))*pval+c(1);```
asigna el valor de <b>p<sub>3</sub>(z)</b> a <b>pval</b>. Si <b>z</b> es un vector, entonces tenemos
```pval = c(4)*ones(size(z));```
```pval = (z-x(3)).*pval+c(3);```
```pval = (z-x(2)).*pval+c(2);```
```pval = (z-x(1)).*pval+c(1);```
En general tenemos
<center>
https://cdn.steemitimages.com/DQmNSzT8K8YqL3vp4CF4gYNMvn2MkY8zNa9DAEQb842CN3a/equation24.png
<sub>Función de la Regla de Horner para Interpolación de Newton. Elaborado por @abdulmath en GNU Octave.</sub></center>

<hr>
https://cdn.steemitimages.com/DQmWXaTLF4uGH9x4QgPh29vKFUfyTGrzPaN2v4zytNiEEzC/SeparadorGMath33.png
<hr>

<h2><div class="phishy">Propiedades</div></h2>

Con dos enfoques para el problema de la interpolación polinómica, tenemos la oportunidad de evaluar sus méritos relativos. La <i>velocidad</i> y la <i>precisión</i> son las principales preocupaciones.

<hr>

<h3><div class="phishy">Velocidad</div></h3>
 
Comenzemos con un script de velocidad o tiempo
<center>
https://cdn.steemitimages.com/DQmXGCaCVckhDHqgEK72FkmpjdhCTnpKYvPyVTxoF6XskGe/equation25.png
<sub>Script de comparación de Velocidad. Elaborado por @abdulmath en GNU Octave.</sub></center>

<hr>

<h3><div class="phishy">Precisión</div></h3>

Sabemos que el interpolador polinómico existe y es único, pero ¿cómo se aproxima? La respuesta a la pregunta depende de las derivadas de la función que se está interpolando.

https://cdn.steemitimages.com/DQmTh4Y9jPSUEbwfq44GgqTWiR4oybciK7kkobFBAtWBG4E/equation26.png

Este resultado muestra que la calidad de <b>p<sub>n-1</sub></b>(x)</b> depende de el tamaño de la <b>n</b>-ésima derivada. Si tenemos una cota de esta derivada, entonces podemos calcular la cota del error. Para ilustrar lo anterior de manera practica, supongamos que
<center>
https://cdn.steemitimages.com/DQmYdXoSTQ2bbtLJSCkJ7pZADAFxNPaAjFhPh5w3QoP8geM/equation27.png</center>
Así, para cualquier <b>z</b> en el intervalo <b>[a, b]</b> tenemos
<center>
https://cdn.steemitimages.com/DQmXQXRKiFM3jtr8Q1P96wvAjdSUYP7u69ZV6FbhPMx4RF9/equation28.png</center>
Si basamos el interpolante en los puntos igualmente espaciados
<center>
https://cdn.steemitimages.com/DQmW2hMWj7RM42hzRpsJnSKdX5LMev2ci6986Gxm4ejKLsu/equation29.png</center>
entonces por un simple cambio de variable tenemos
<center>
https://cdn.steemitimages.com/DQmUPUn4yjsfeppr4uPMrwHbeFxiP5Sxtyh7QwGR66YUo3c/equation30.png</center>
Se puede demostrar que el máximo no es mayor que <b>1/(4n)</b>, de donde concluimos que
<center>
https://cdn.steemitimages.com/DQmRFpMCG3Xn6FgMuNS1c4oam8v6hwPTxForFH3Ppao3JaV/equation31.png</center>
Por lo tanto, si una función tiene mal comportamiento en las derivadas superiores, entonces la calidad del polinomio interpolante puede disminuir a medida que aumenta el grado.

Un ejemplo clásico de esto es el problema de interpolar la función 
<center>
https://cdn.steemitimages.com/DQmP5pbyUPE5FvRrA2YZtnPNWTtBWmZeDRPAWstTUojJQQm/equation32.png</center>
en el intervalo <b>[-1, 1]</b>.

En el script siguiente exploramos este problema:
<center>
https://cdn.steemitimages.com/DQmUH8PXsTwFPfuCdM9vFQwyBEc6U2SLcEL4xXCWfexrffb/equation33.png
<sub>Script Runge. Elaborado por @abdulmath en GNU Octave.</sub></center>
En las gráficas a continuación podemos apreciar que el interpolador <i>captura</i> el comportamiento de la función en la parte central del intervalo, mientras que este se pierde cerca de los puntos de la frontera.

|https://cdn.steemitimages.com/DQmZsLYHANdBec9gWR7fz5DS32W1eW3rFkDaom3Vyyu7GTh/Inter04.png|https://cdn.steemitimages.com/DQmYi4DrgbGQGp9Rk5SJM81kHcimuyMs4c8MdjycV4N9ujv/Inter05.png|
|---|---|
|https://cdn.steemitimages.com/DQmXW5AraizkUortTN4bJLiQqNNT1pfwm22pgwk4Zynbt9g/Inter06.png|https://cdn.steemitimages.com/DQmZDrbd4R2EELa33ZrkA849ogeAMN3mEGq86WGFc6BaGuH/Inter07.png|


<hr>
https://cdn.steemitimages.com/DQmZne2kvXmUvL8qD6Bsa9iwnX8M6i4NMd8QCQSmNhsnqqb/SeparadorGMath08.png
<hr>

Queridos amigos y lectores, espero hayan disfrutado y aprendido acerca de la <b>Interpolación Polinomial usando el entorno GNU Octave | 2<sup>da</sup> Parte</b>, de igual manera los invito para la e<sup>era</sup> Parte de este tema, donde continuaremos mostrando el desarrollo del mismo con los script y aplicaciones. Espero que esto pueda servir de apoyo a ustedes, hijos, nietos, sobrinos o amigos que quieran aprender un poco más del maravilloso mundo de las matemáticas y la programación. No olviden dejar sus comentarios. Saludos y nos leemos pronto.

<br>Si desean consultar un poco más del tema pueden usar las siguientes referencias:
+ Demidovich, B. P., and I. A. Maron. <i>Computational Mathematics</i> Mir, Moscow, 1976.
+ Björck, Åke. <i>Numerical methods in matrix computations.</i> Vol. 59. Cham: Springer, 2015.
+ Burden, Richard L., and J. Douglas Faires. <i>Numerical analysis.</i> Ninth Edition.  Cengage Learning. 2011.
<hr>
También los invito a leer las anteriores publicaciones de está serie de <b><i>Introducción a las Ecuaciones Diferenciales Parciales</i></b>, que estoy seguro serán de su interés:

|<a href="https://steemit.com/steemstem/@abdulmath/interpolacion-polinomial-usando-el-entorno-gnu-octave-or-1era-parte">Interpolación Polinomial usando el entorno GNU Octave - 1era Parte.</a>|<a href="https://steemit.com/steemstem/@abdulmath/interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte">Interpolación Polinomial usando el entorno GNU Octave - 2da Parte.</a>|
|---|---|

<hr>

Las imágenes, separadores y las ecuaciones fueron creadas y editadas por @abdulmath usando software libre,  GNU Octave, https://cdn.steemitimages.com/DQmYbufK9HG9LpAUVgEcFSNVmZG2irkjVy1duWbYqVyVtf4/LateX.png, GIMP e Inkscape.

<hr>
https://cdn.steemitimages.com/DQmaTz241KQheijV5qjopsqAzLW8ZpBqCmKmjpaixyGV4Wz/STEMESPANOL06.png
<hr>

@SteemSTEM es un proyecto comunitario con el objetivo de promover y apoyar la Ciencia, la Tecnología, la Ingeniería y las Matemáticas en la blockchain Steem. @Stem-espanol es parte de esta comunidad, si desea apoyar el proyecto, puedes contribuir con contenido en español en las áreas de Ciencia, Tecnología, Ingeniería y Matemáticas, utilizando las etiquetas #steemstem y #stem-espanol.

<center>
https://cdn.steemitimages.com/DQmaSVacTwJ8v8uqJLMAKkNaLhisPAx7bi7KXVuzV1B3uQm/FinalGMath00.png
<sub>Imagen diseñada con GIMP y elaborada por @abdulmath.</sub></center>
</div>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 215 others
properties (23)
authorabdulmath
permlinkinterpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte
categorysteemstem
json_metadata{"tags":["steemstem","knowledge","stem-espanol","innovation","technological"],"users":["abdulmath","steemstem","stem-espanol"],"image":["https://cdn.steemitimages.com/DQmRxPdiuBR1FynxRZ4BznxJDNfkq9dBasuJZCaGVjdKvcE/Interpolaci%C3%B3n.png","https://cdn.steemitimages.com/DQmWc6PNwWG3TTTx9BQoTy4a8M7nVh88YMQAwVFjX6msEFD/SeparadorStem.png","https://cdn.steemitimages.com/DQma8LiFikTpSScwY6ED2Kn5jdUag9c1bFBPUQTYmssPvrH/equation00.png","https://cdn.steemitimages.com/DQmcXJYBRJK8xuqjoJkv1gfXjDz8EzKsUbF3KWcU1rxj4q9/equation01.png","https://cdn.steemitimages.com/DQmeYwrp6qoZBxZPVbXQC7QDMvh2rZQBLwdoTHcke2L3too/equation02.png","https://cdn.steemitimages.com/DQmbU9nQkryFAx9PHQ7jBxFbHJ3gKPpeRQygZFKuAvUtQa9/equation03.png","https://cdn.steemitimages.com/DQmaJvLmRUd8QmzymwuNVkiGvttnNDDuvR6ge9rbZazoEDR/equation04.png","https://cdn.steemitimages.com/DQmTwdqNVGaFNfFWdEN9LAYWNpPyNAGU7UZmCZqYnmRACHG/equation05.png","https://cdn.steemitimages.com/DQmduzsezoWfvGi8NCyLHxQHxn3MGaourFDw9oq1jDNvcJ4/equation06.png","https://cdn.steemitimages.com/DQmasxAMtepGgz4iPkbXYyN74drMh8H5XUoWD5PmQv67iPZ/equation07.png","https://cdn.steemitimages.com/DQmNr1aDeWVLTNkcMgrYHybJovbNPoTkbeMBwjJSRifQ4yJ/equation08.png","https://cdn.steemitimages.com/DQmVDDC7ZtbFQKpuqEyBob8emYZbbXt2u9yLEDCTKUkZKPH/equation09.png","https://cdn.steemitimages.com/DQmf8QX7UJQgWvMr1EddqP1GYriGuMBg9SdeNSAjS2pToQo/SeparadorGMath06.png","https://cdn.steemitimages.com/DQmWoKSScWzdsVxNbea2Vtk44z24bNhBm35ETv8UCD4PLhP/equation10.png","https://cdn.steemitimages.com/DQmeYmjaowpuXs5GcABTqKqQLcLopF9rWeCpvATXjWX75Ni/equation11.png","https://cdn.steemitimages.com/DQmXcEe326H2FchCrwMbG7hsyjKSjstRinbHLeXXANNzCiB/equation12.png","https://cdn.steemitimages.com/DQmUi4CsBfy56AMcXdSVc351c4PuYjxBKepW2VV4DbM5Bac/equation13.png","https://cdn.steemitimages.com/DQmWaXCGo2wyZ7n5WmEVKum2Qq8Wii7XtKcpQ4PeyQEhKTh/equation14.png","https://cdn.steemitimages.com/DQmVAUidgX2tktsbCTHEZXGbzJ5jgVWvnWvMhWaFkLwuSvn/equation15.png","https://cdn.steemitimages.com/DQmUaERuwwrrUYpYSo3JeMgErB4d2E6iReRKtukriPxwimt/equation16.png","https://cdn.steemitimages.com/DQmTVfnkrgHpunJeLbgF1bGjYX296hBWYfMyQxAokuVL1x7/equation17.png","https://cdn.steemitimages.com/DQmSesDatVyDQ7bZNBy5ux9pchdcDUD4jAZ1A3HxYifsuQv/equation18.png","https://cdn.steemitimages.com/DQmcgNojKkkLuKDdkuQbTvwrxnCn7jN99TZLjbEVmWDHhhf/equation19.png","https://cdn.steemitimages.com/DQmc5Az4gEw5rsYWRU1vduLjdBGE4s6kQuJX1y5J477rdNE/equation20.png","https://cdn.steemitimages.com/DQmdfWrQX4drnuA5f1Vy7oAZmLD8e2NwiWWgBegW4nDqu5J/equation21.png","https://cdn.steemitimages.com/DQmZGoFQBqEL5noHJHJX7LT7nyvV88sC8VuwHF8kDvuoAed/equation22.png","https://cdn.steemitimages.com/DQmPnBhU5HQSQmw2dm6ADEJMjKCc68KtUiUbkjyXZ5nvm5i/SeparadorGMath14.png","https://cdn.steemitimages.com/DQmTitcEmZFLfmfw6TqjWShaVGLAYRTpUFiWkEBFpy6oPR6/equation23.png","https://cdn.steemitimages.com/DQmNSzT8K8YqL3vp4CF4gYNMvn2MkY8zNa9DAEQb842CN3a/equation24.png","https://cdn.steemitimages.com/DQmWXaTLF4uGH9x4QgPh29vKFUfyTGrzPaN2v4zytNiEEzC/SeparadorGMath33.png","https://cdn.steemitimages.com/DQmXGCaCVckhDHqgEK72FkmpjdhCTnpKYvPyVTxoF6XskGe/equation25.png","https://cdn.steemitimages.com/DQmTh4Y9jPSUEbwfq44GgqTWiR4oybciK7kkobFBAtWBG4E/equation26.png","https://cdn.steemitimages.com/DQmYdXoSTQ2bbtLJSCkJ7pZADAFxNPaAjFhPh5w3QoP8geM/equation27.png","https://cdn.steemitimages.com/DQmXQXRKiFM3jtr8Q1P96wvAjdSUYP7u69ZV6FbhPMx4RF9/equation28.png","https://cdn.steemitimages.com/DQmW2hMWj7RM42hzRpsJnSKdX5LMev2ci6986Gxm4ejKLsu/equation29.png","https://cdn.steemitimages.com/DQmUPUn4yjsfeppr4uPMrwHbeFxiP5Sxtyh7QwGR66YUo3c/equation30.png","https://cdn.steemitimages.com/DQmRFpMCG3Xn6FgMuNS1c4oam8v6hwPTxForFH3Ppao3JaV/equation31.png","https://cdn.steemitimages.com/DQmP5pbyUPE5FvRrA2YZtnPNWTtBWmZeDRPAWstTUojJQQm/equation32.png","https://cdn.steemitimages.com/DQmUH8PXsTwFPfuCdM9vFQwyBEc6U2SLcEL4xXCWfexrffb/equation33.png","https://cdn.steemitimages.com/DQmZsLYHANdBec9gWR7fz5DS32W1eW3rFkDaom3Vyyu7GTh/Inter04.png","https://cdn.steemitimages.com/DQmYi4DrgbGQGp9Rk5SJM81kHcimuyMs4c8MdjycV4N9ujv/Inter05.png","https://cdn.steemitimages.com/DQmXW5AraizkUortTN4bJLiQqNNT1pfwm22pgwk4Zynbt9g/Inter06.png","https://cdn.steemitimages.com/DQmZDrbd4R2EELa33ZrkA849ogeAMN3mEGq86WGFc6BaGuH/Inter07.png","https://cdn.steemitimages.com/DQmZne2kvXmUvL8qD6Bsa9iwnX8M6i4NMd8QCQSmNhsnqqb/SeparadorGMath08.png","https://cdn.steemitimages.com/DQmYbufK9HG9LpAUVgEcFSNVmZG2irkjVy1duWbYqVyVtf4/LateX.png","https://cdn.steemitimages.com/DQmaTz241KQheijV5qjopsqAzLW8ZpBqCmKmjpaixyGV4Wz/STEMESPANOL06.png","https://cdn.steemitimages.com/DQmaSVacTwJ8v8uqJLMAKkNaLhisPAx7bi7KXVuzV1B3uQm/FinalGMath00.png"],"links":["https://steemit.com/steemstem/@abdulmath/interpolacion-polinomial-usando-el-entorno-gnu-octave-or-1era-parte","https://steemit.com/steemstem/@abdulmath/interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte"],"app":"steemit/0.1","format":"markdown"}
created2018-08-21 04:26:06
last_update2018-08-22 19:27:03
depth0
children26
last_payout2018-08-28 04:26:06
cashout_time1969-12-31 23:59:59
total_payout_value8.261 HBD
curator_payout_value2.561 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15,757
author_reputation44,913,742,198,559
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id68,872,825
net_rshares7,977,683,334,915
author_curate_reward""
vote details (279)
@amestyj ·
Buen trabajo @adbdulmath, nos seguimos leyendo amigo.
properties (22)
authoramestyj
permlinkre-abdulmath-interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte-20180823t225119990z
categorysteemstem
json_metadata{"tags":["steemstem"],"users":["adbdulmath"],"app":"steemit/0.1"}
created2018-08-23 22:51:15
last_update2018-08-23 22:51:15
depth1
children1
last_payout2018-08-30 22:51:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation208,612,114,948,682
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,167,421
net_rshares0
@abdulmath ·
Gracias. Saludos
properties (22)
authorabdulmath
permlinkre-amestyj-re-abdulmath-interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte-20180823t230615998z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-08-23 23:05:24
last_update2018-08-23 23:05:24
depth2
children0
last_payout2018-08-30 23:05:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation44,913,742,198,559
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id69,168,263
net_rshares0
@andreamsulba ·
Bastante explicativo tu post, cada detalle, muy bueno.
properties (22)
authorandreamsulba
permlinkre-abdulmath-interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte-20180825t143354613z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-08-25 14:34:00
last_update2018-08-25 14:34:00
depth1
children1
last_payout2018-09-01 14:34:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation180,919,088,577
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,327,416
net_rshares0
@abdulmath ·
Hola @andreamsulba, agradecido por tus comentarios y apreciaciones. Saludos y un abrazo.
properties (22)
authorabdulmath
permlinkre-andreamsulba-re-abdulmath-interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte-20180826t214531808z
categorysteemstem
json_metadata{"tags":["steemstem"],"users":["andreamsulba"],"app":"steemit/0.1"}
created2018-08-26 21:44:36
last_update2018-08-26 21:44:36
depth2
children0
last_payout2018-09-02 21:44:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length88
author_reputation44,913,742,198,559
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id69,444,480
net_rshares0
@angelica7 ·
Excelente publicación @abdulmath Mis mejores deseos.
Buena vibra.
👍  ,
properties (23)
authorangelica7
permlinkre-abdulmath-interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte-20180821t044416007z
categorysteemstem
json_metadata{"tags":["steemstem"],"users":["abdulmath"],"app":"steemit/0.1"}
created2018-08-21 04:44:27
last_update2018-08-21 04:44:27
depth1
children1
last_payout2018-08-28 04:44:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length65
author_reputation501,409,146,445,044
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id68,874,279
net_rshares4,843,328,233
author_curate_reward""
vote details (2)
@abdulmath ·
Gracias @angelica7. Gracias por tus comentarios. Saludos
properties (22)
authorabdulmath
permlinkre-angelica7-re-abdulmath-interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte-20180823t200039629z
categorysteemstem
json_metadata{"tags":["steemstem"],"users":["angelica7"],"app":"steemit/0.1"}
created2018-08-23 19:59:45
last_update2018-08-23 19:59:45
depth2
children0
last_payout2018-08-30 19:59:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation44,913,742,198,559
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id69,156,520
net_rshares0
@ciberpoeta11 ·
Matematica el lenguaje de el universo buen post¡¡
properties (22)
authorciberpoeta11
permlinkre-abdulmath-interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte-20180824t005652921z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-08-24 00:56:57
last_update2018-08-24 00:56:57
depth1
children1
last_payout2018-08-31 00:56:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation2,688,779,901
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,175,021
net_rshares0
@abdulmath ·
Muy agradecido por tus comentarios. La belleza del Universo: Las Matemáticas. Saludos
properties (22)
authorabdulmath
permlinkre-ciberpoeta11-re-abdulmath-interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte-20180825t002701340z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-08-25 00:26:09
last_update2018-08-25 00:26:09
depth2
children0
last_payout2018-09-01 00:26:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation44,913,742,198,559
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id69,275,663
net_rshares0
@daysissuleiman ·
Excelente post, entendi algunas cosas pero después me perdi.
properties (22)
authordaysissuleiman
permlinkre-abdulmath-interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte-20180824t005718955z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-08-24 00:57:24
last_update2018-08-24 00:57:24
depth1
children1
last_payout2018-08-31 00:57:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length60
author_reputation533,020,299,579
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,175,046
net_rshares0
@abdulmath ·
Agradecido por tu comentario. Con un poco más de paciencia, seguro podrás entender todo. Saludos
properties (22)
authorabdulmath
permlinkre-daysissuleiman-re-abdulmath-interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte-20180825t002725742z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-08-25 00:26:33
last_update2018-08-25 00:26:33
depth2
children0
last_payout2018-09-01 00:26:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length96
author_reputation44,913,742,198,559
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id69,275,694
net_rshares0
@elemarg25 · (edited)
Excelente explicaciones, te felicito por ese amor a las matemáticas.
properties (22)
authorelemarg25
permlinkre-abdulmath-interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte-20180825t001151420z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-08-25 00:40:42
last_update2018-08-25 00:45:39
depth1
children1
last_payout2018-09-01 00:40:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation106,910,978,093,004
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,276,535
net_rshares0
@abdulmath ·
Gracias @elemarg25, Agradecido por tus comentarios. Saludos y un abrazo.
properties (22)
authorabdulmath
permlinkre-elemarg25-re-abdulmath-interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte-20180826t214958915z
categorysteemstem
json_metadata{"tags":["steemstem"],"users":["elemarg25"],"app":"steemit/0.1"}
created2018-08-26 21:49:12
last_update2018-08-26 21:49:12
depth2
children0
last_payout2018-09-02 21:49:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length72
author_reputation44,913,742,198,559
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id69,444,740
net_rshares0
@mariana4ve ·
Súper interesante @abdulmath me impresiona la facilidad con que explicas el contenido haciéndolo tan agradable.

Muchos éxitos amiguito mio.
properties (22)
authormariana4ve
permlinkre-abdulmath-interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte-20180825t054837505z
categorysteemstem
json_metadata{"tags":["steemstem"],"users":["abdulmath"],"app":"steemit/0.1"}
created2018-08-25 05:48:36
last_update2018-08-25 05:48:36
depth1
children1
last_payout2018-09-01 05:48:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length140
author_reputation52,307,087,951,563
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,293,724
net_rshares0
@abdulmath ·
Hola @mariana4ve, que bueno que te haya gustado.

Saludos y un abrazo. Igual para tí, éxitos.
👍  
properties (23)
authorabdulmath
permlinkre-mariana4ve-re-abdulmath-interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte-20180826t214811353z
categorysteemstem
json_metadata{"tags":["steemstem"],"users":["mariana4ve"],"app":"steemit/0.1"}
created2018-08-26 21:47:18
last_update2018-08-26 21:47:18
depth2
children0
last_payout2018-09-02 21:47:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length93
author_reputation44,913,742,198,559
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id69,444,629
net_rshares1,784,469,454
author_curate_reward""
vote details (1)
@reyito ·
Felicitaciones amigo @abdulmath
properties (22)
authorreyito
permlinkre-abdulmath-interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte-20180823t173137880z
categorysteemstem
json_metadata{"tags":["steemstem"],"users":["abdulmath"],"app":"steemit/0.1"}
created2018-08-23 17:30:33
last_update2018-08-23 17:30:33
depth1
children1
last_payout2018-08-30 17:30:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation196,299,548,773
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,145,746
net_rshares0
@abdulmath ·
Agradecido por tu visita y valoración de mi trabajo, Saludos amigo @reyito
properties (22)
authorabdulmath
permlinkre-reyito-re-abdulmath-interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte-20180823t195620100z
categorysteemstem
json_metadata{"tags":["steemstem"],"users":["reyito"],"app":"steemit/0.1"}
created2018-08-23 19:55:27
last_update2018-08-23 19:55:27
depth2
children0
last_payout2018-08-30 19:55:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length74
author_reputation44,913,742,198,559
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id69,156,193
net_rshares0
@saylds12 ·
Me encanta tu post, está excelente. Una mente genial y estéticamente muy llamativo. Aprendo de ti, mis respetos. Saludos.
properties (22)
authorsaylds12
permlinkre-abdulmath-interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte-20180824t014821523z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-08-24 01:10:24
last_update2018-08-24 01:10:24
depth1
children1
last_payout2018-08-31 01:10:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length121
author_reputation7,945,744,455,494
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,175,900
net_rshares0
@abdulmath ·
Agradecido por tu comentario, Me encanta que puedas aprender de mis publicaciones. Saludos y exitos, un abrazo
properties (22)
authorabdulmath
permlinkre-saylds12-re-abdulmath-interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte-20180825t002810055z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-08-25 00:27:18
last_update2018-08-25 00:27:18
depth2
children0
last_payout2018-09-01 00:27:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation44,913,742,198,559
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id69,275,749
net_rshares0
@steemstem ·
post_voted_by
<center> https://cdn.discordapp.com/attachments/354723995037466624/463380522928963599/steemSTEM.png</center> <br><br> This post has been voted on by the steemstem curation team and voting trail.  <br> <br>There is more to SteemSTEM than just writing posts, check <a href="https://steemit.com/steemstem/@steemstem/being-a-member-of-the-steemstem-community">here</a> for some more tips on being a community member. You can also join our discord <a href="https://discord.gg/BPARaqn">here</a> to get to know the rest of the community!
properties (22)
authorsteemstem
permlinkre-interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte-20180822t110701
categorysteemstem
json_metadata""
created2018-08-22 11:07:03
last_update2018-08-22 11:07:03
depth1
children1
last_payout2018-08-29 11:07:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length530
author_reputation262,017,435,115,313
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,007,399
net_rshares0
@abdulmath ·
Thanks for the support
properties (22)
authorabdulmath
permlinkre-steemstem-re-interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte-20180822t110701-20180823t195744234z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-08-23 19:56:48
last_update2018-08-23 19:56:48
depth2
children0
last_payout2018-08-30 19:56:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation44,913,742,198,559
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id69,156,300
net_rshares0
@stop40 ·
Felicidades mi pana. jajjja no entiendo mucho pero bien. jajajaj
https://images.cooltext.com/5169509.png
properties (22)
authorstop40
permlinkre-abdulmath-interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte-20180825t001543707z
categorysteemstem
json_metadata{"tags":["steemstem"],"image":["https://images.cooltext.com/5169509.png"],"app":"steemit/0.1"}
created2018-08-25 00:15:33
last_update2018-08-25 00:15:33
depth1
children1
last_payout2018-09-01 00:15:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length104
author_reputation373,564,653,210
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,274,994
net_rshares0
@abdulmath ·
Gracias por tus comentarios. Saludos
properties (22)
authorabdulmath
permlinkre-stop40-re-abdulmath-interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte-20180825t002830845z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-08-25 00:27:42
last_update2018-08-25 00:27:42
depth2
children0
last_payout2018-09-01 00:27:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation44,913,742,198,559
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id69,275,776
net_rshares0
@utopian-io ·
#### Hi @abdulmath!

Your post was upvoted by utopian.io in cooperation with steemstem - supporting knowledge, innovation and technological advancement on the Steem Blockchain.

#### Contribute to Open Source with utopian.io
Learn how to contribute on <a href="https://join.utopian.io">our website</a> and join the new open source economy.

**Want to chat? Join the Utopian Community on Discord https://discord.gg/h52nFrV**
properties (22)
authorutopian-io
permlink20180822t134856501z
categorysteemstem
json_metadata{"tags":["utopian.tip"],"app":"utopian-io"}
created2018-08-22 13:48:57
last_update2018-08-22 13:48:57
depth1
children1
last_payout2018-08-29 13:48:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length423
author_reputation152,955,367,999,756
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,019,940
net_rshares0
@abdulmath ·
Thanks for the support
properties (22)
authorabdulmath
permlinkre-utopian-io-20180822t134856501z-20180823t195722042z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-08-23 19:56:27
last_update2018-08-23 19:56:27
depth2
children0
last_payout2018-08-30 19:56:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation44,913,742,198,559
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id69,156,271
net_rshares0
@votovzla ·
Grandioso estos son temas que son difíciles de encontrar en la web de verdad se ve que tienes mucho amor por las matemáticas.
properties (22)
authorvotovzla
permlinkre-abdulmath-interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte-20180822t124112090z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-08-22 12:41:00
last_update2018-08-22 12:41:00
depth1
children1
last_payout2018-08-29 12:41:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length125
author_reputation110,301,635,838,404
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,014,140
net_rshares0
@abdulmath ·
Muy agradecido por su tiempo en leer mis publicaciones, y su valoración a mi trabajo continuo. Gracias por visitar mi blog, y por su apoyo al esfuerzo.
properties (22)
authorabdulmath
permlinkre-votovzla-re-abdulmath-interpolacion-polinomial-usando-el-entorno-gnu-octave-or-2da-parte-20180823t195936997z
categorysteemstem
json_metadata{"tags":["steemstem"],"app":"steemit/0.1"}
created2018-08-23 19:58:42
last_update2018-08-23 19:58:42
depth2
children0
last_payout2018-08-30 19:58:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length151
author_reputation44,913,742,198,559
root_title"Interpolación Polinomial usando el entorno GNU Octave | 2da Parte"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id69,156,450
net_rshares0