Presentación de Ejemplo
Uso de slides.com
\lim_{x \to \infty} \exp(-x) = 0
limx→∞exp(−x)=0
\lim_{x \to \infty} \exp(-x) = 0Entrada:
Salida:
A_{m,n} =
\begin{pmatrix}
a_{1,1} & a_{1,2} & \cdots & a_{1,n} \\
a_{2,1} & a_{2,2} & \cdots & a_{2,n} \\
\vdots & \vdots & \ddots & \vdots \\
a_{m,1} & a_{m,2} & \cdots & a_{m,n}
\end{pmatrix}A_{m,n} =
\begin{pmatrix}
a_{1,1} & a_{1,2} & \cdots & a_{1,n} \\
a_{2,1} & a_{2,2} & \cdots & a_{2,n} \\
\vdots & \vdots & \ddots & \vdots \\
a_{m,1} & a_{m,2} & \cdots & a_{m,n}
\end{pmatrix}
Am,n=⎝⎜⎜⎛a1,1a2,1⋮am,1a1,2a2,2⋮am,2⋯⋯⋱⋯a1,na2,n⋮am,n⎠⎟⎟⎞
¡Matemáticas!
from time import localtime
activities = {
8: 'Sleeping',
9: 'Commuting',
17: 'Working',
18: 'Commuting',
20: 'Eating',
22: 'Resting'
}
time_now = localtime()
hour = time_now.tm_hour
for activity_time in sorted(activities.keys()):
if hour < activity_time:
print activities[activity_time]
break
else:
print 'Unknown, AFK or sleeping!'Python:
¡Códigos!
var msg = "";
var person = {
fname: "John",
lname:"Doe",
age:25
};
var x;
for (x in person) {
txt += person[x] + " ";
}
myFunction(msg);Javascript:
Muchos temas y soporta varios lenguajes...
Ejemplo
By Richard Cotrina
Ejemplo
Ejemplo
- 1,255