wolfram-mathematica - prueba - wolfram mathematica tutorial
¿Cómo generar GIF animado de un manipulado? 8.0.1 (2)
Puede usar v = Animate[ Text[t], {{t, 4, "start"}, 0, 10, 1, ControlType -> Trigger, AnimationRate -> 1, AnimationRepetitions -> 10}]
¿Exportar a gif animados parece haber cambiado en Mathematica 8.0.1?
Normalmente hago GIF animados de un manipulador simplemente escribiendo:
v=Manipulate[....]
then Export["foo.gif",v];
Pero ahora no funciona. Acabo de recibir una imagen estática.
Aquí hay un ejemplo:
v=Manipulate[
Text[t],
{{t,4,"start"},0,10,1,ControlType->Trigger,AnimationRate->1,AnimationRepetitions->10}
]
Ahora Export["foo.gif",v]
simplemente genera una imagen estática, ya que no se estaba ejecutando nada.
Pero Export["foo.avi",v]
funciona, y genera una película avi en ejecución.
Además, solía haber opciones GIF animadas que usaba antes, pero ahora no son compatibles:
Export["foo.gif",v,ConversionOptions->{"AnimationDisplayTime"->0.5,"Loop"->True},ImageSize->{500,500}]
Export::convoptobs: ConversionOptions is obsolete.
Cuando voy a ayudar, no veo opciones para GIF allí. ¿Cómo se controla un retraso de animación y tal?
Pensé que alguien aquí podría tener una idea.
gracias --Nasser
Puedes exportar una Table
a un GIF animado.
v = Table[Panel[Text[t]], {t, 0, 10, 1}];
Export["anim.gif", v, "DisplayDurations" -> 0.5]
Si absolutamente quieres que la animación se vea como una Manipulate
, podrías hacer algo así.
v = Table[Manipulate[Text[t],
{{t, Mod[k, 10], "start"}, 0, 10, 1, ControlType -> Trigger}],
{k, 4, 14}];
Export["Manip.gif", v, "DisplayDurations" -> 0.5]