Usuario:Jhonatan.Mondragon

De Wikipedia, la enciclopedia libre

Jhonatan Mondragon[editar]

Ayudo en Economia, Crear un sema-un significante, poner order y ser meticuloso, actualziar informacion, y leer pdf de economia de alta complejidad (preferencia IMF).

Un sema: un significante[editar]

Capital[editar]

  • Capital tiene 11 semas. Perteneciente a la cabeza debe ser cefaleo.
  • 7 pecados capitales: religion no debe meterse en el diccionario.
  • Ciudad Capital: que tal sede administrativa o politica.
  • Principal o muy grande: un significante redundante.
  • Haciendo, caudal, patrimonio: significante redundante
  • Dinero que se presta: buscar otro sema.
  • Capital como factor de producción: debe quedar
  • Capital del queso: no debe siquiera ser introducido en el diccionario
  • Letra Mayuscula: Sema Redundante
  • Linea Imaginaria usada en Milicia: buscar otro sema http://buscon.rae.es/draeI/SrvltConsulta?TIPO_BUS=3&LEMA=labor
  • Capital Circulante o rotacion: investigar
  • Capital fijo: Otro sema
  • Capital liquido: otro sema
  • Capital Nacional: Patrimonio Nacional (buscaler otro sema)
  • Capital Social: buscar otro sema.

Matlab[editar]

x = M\b is the solution of M x = b x = b/M is the solution of x M = b.

x = 2.4307 0.6801 0.7390

format long

x = 2.43071593533487 0.68013856812933 0.73903002309469

s.*s » s.*s ans = 1 64 25 s.^2 1 64 25

sin(sym(-pi)) give you 0. rem(12,4) ans = 0 Commands: max; min; length; sort; sum; prod; median; mean; std.

» M = [ 0.7012,0.2625,0.3282 0.9103,0.0475,0.6326 0.7622,0.7361,0.7564];

max(M) da: ans = 0.9103 0.7361 0.7564

max(ans) da ans = 0.9103 Commands: eye; zeros; ones; diag; triu; tril; rand. C = 0.2190 0.3835 0.5297 0.4175 0.0470 0.5194 0.6711 0.6868 0.6789 0.8310 0.0077 0.5890 0.6793 0.0346 0.3834 0.9304 0.9347 0.0535 0.0668 0.8462 triu(C) ans = 0.2190 0.3835 0.5297 0.4175 0 0.5194 0.6711 0.6868 0 0 0.0077 0.5890 0 0 0 0.9304 0 0 0 0 » tril(C) ans = 0.2190 0 0 0 0.0470 0.5194 0 0 0.6789 0.8310 0.0077 0 0.6793 0.0346 0.3834 0.9304 0.9347 0.0535 0.0668 0.8462 Command: size; det; inv; rank; rref; eig; poly; norm; cond; lu; qr; chol; svd. x=-pi:0.01:pi; y=cos(x); plot(x,y) y yellow . point m magenta o circle c cyan x x-mark r red + plus g green - solid b blue * star w white : dotted k black -. dashdot -- dashed plot(x,y,’g’) z = sin(x); plot(x,y,'r--',x,z,'b:') [x,y] = meshgrid(-3:.1:3,-3:.1:3); >> z = 3*(1-x).^2.*exp(-(x.^2) - (y+1).^2) ... - 10*(x/5 - x.^3 - y.^5).*exp(-x.^2-y.^2) ... - 1/3*exp(-(x+1).^2 - y.^2); >> surf(z) >> xlabel('x') >> ylabel('y') >> zlabel('z') >> title('Peaks') (a) the word function, (b) the output(s) in brackets, (the variable a in the above example) (c) the equal sign, (d) the name of the function, which must match the function filename (log3 in the above example) and (e) the input(s) (the variable x in the above example). for j=1:4 j+2 end for i=1:10 x2(i) = x(i)^2; end is the same as x2 = x.^2