Posts

VARIG

Image
VARIG IATA RG ICAO VRN Voksigno VARIG Fondita 1926 Programo por oftaj flugantoj Smiles Aviadilaro 26 Cellokoj Ĉefsidejo Sao-Paŭlo (Brazilo) Ĉefuloj Retejo: www.varig.com v   •   d   •   r La entrepreno VARIG estas Brazila flugkompanio kun sidejo en Sao-Paŭlo. Ĝis la jaro 2006 ĝi estis membro de la flugkompania alianco "Star Alliance" , en kiu ĝis membriĝis ankoraŭ dum ties fondojaro 1997: La kompanio bankrotiĝis en 2005; la posteula kompanio VRG Linhas Aéreas ne plu plenumis la kondiĉojn de alianca membro kaj estis malmembrigita (tamen la kompanio kaj ĝiaj aviadiloj internacie daŭre havas la nomon "VARIG"). La kompanio laŭ la stato de aŭgusto 2010 disponas pri 26 regulaj pasaĝeraj aviadiloj. La flugoj de la kompanio havas la IATA-mallongigon RG ; la ICAO-mallongigo por la entrepreno estas VRN . Eksteraj ligiloj | oficiala retejo (portugale, alidirektilo al la retejo de la nuna te...

Evaluating number of iteration with a certain map with While

Image
2 $begingroup$ Beeing used to programming in C-like languages I am struggling with iterations and loops with mathematica. I am trying not to use the For command, as already lots of people recommended. I am trying to solve the following problem: Given the map $z_{i+1}= z_i^2 +c$ with $z_i, c in mathbb{C}$ and $z_0 = 0$ evaluate the contours that represents given the parameter $c$ the number of iterations $i$ that I have to perform in order to have $|z_i|> 2$ . Perform the computation with $-0.6 leq Re(z_i)leq -0.4 $ and $0.6 leq Im(z_i)leq 0.4$ and 100 points per axis. Given the condition I though I could use a While Loop to perform the task i=0; (*init counter*) z[i]=0; (*init z[i]*) g[c_]:= While[ Abs[z[i]]<= 2, (*condition*) z[i+1]= z[i]^2 +c; (*process*) ...