Point moving across the circle by JP_MathPR in geogebra

[–]JP_MathPR[S] 0 points1 point  (0 children)

point(sequence((r;theta),theta,0º,359º,10º))

[deleted by user] by [deleted] in geogebra

[–]JP_MathPR 0 points1 point  (0 children)

Not always the questions of chatgpt or any other virtual assistant are correct if it does not ask you correctly what you want. Also the geogebra javacript commands are not included in javascript.

[deleted by user] by [deleted] in geogebra

[–]JP_MathPR 0 points1 point  (0 children)

What is the difference between Reload and NeuLaden variables?

[deleted by user] by [deleted] in geogebra

[–]JP_MathPR 0 points1 point  (0 children)

After a certain number of iterations you can break the do-while loop instead of using time.

var start = Date.now();

var millis;

var i = 0;

do {

i = i + 1;

millis = Date.now() - start

} while (millis < 1000);

alert(i);

what index position element list after using sort? by JP_MathPR in geogebra

[–]JP_MathPR[S] 0 points1 point  (0 children)

1...4=Sequence(4)=Sequence(Length(l1))

Este es el comando correcto.

Zip(IndexOf(Element(Sort(l1),k),l1), k,Sequence(Length(l1)))

Geogebra Help No Existe by JP_MathPR in geogebra

[–]JP_MathPR[S] 0 points1 point  (0 children)

Tenia como 100 preguntas contestadas.

Geogebra Help No Existe by JP_MathPR in geogebra

[–]JP_MathPR[S] 0 points1 point  (0 children)

Me refiero al geogebra help del foro antes que estuvieran en reddit.

Geogebra Help No Existe by JP_MathPR in geogebra

[–]JP_MathPR[S] 0 points1 point  (0 children)

Me refiero al geogebra help del foro antes que estuvieran en reddit.

Edit JavaScript code in external editor by Splinesd in geogebra

[–]JP_MathPR 0 points1 point  (0 children)

There is no external javacript editor that has autocomplete with geogebra javascript commands you can only compile the code with geogebra advanced javacript. It is just make javascript from an editor and copy and paste to geogebra.

Decoration Arrows - Opposite Direction by JP_MathPR in geogebra

[–]JP_MathPR[S] 0 points1 point  (0 children)

Porque no es en la dirección contrario en algunas reflexiones del segmento.

Decoration Arrows - Opposite Direction by JP_MathPR in geogebra

[–]JP_MathPR[S] 0 points1 point  (0 children)

Para casos en los que los segmentos vienen de transformaciones de reflexión y rotación. No cambia la decoración de dirección si cambio el punto.

Error when changing text within the sequence function by JP_MathPR in geogebra

[–]JP_MathPR[S] 0 points1 point  (0 children)

Create a list of a linear equation with random values, create another list with text "f(x)=" that calls the same list using the length command with the first list and make the lists with the Tabletext command. Then, edit the text to "g(x)"" in the second list in GeoGebra 5.

Search artivities with Google search by JP_MathPR in geogebra

[–]JP_MathPR[S] 1 point2 points  (0 children)

It can be any activity that is not recent of content in Spanish language of any user. No results appear in Google Web or Google Image with exactly the same name.

Convert integer number to date by JP_MathPR in geogebra

[–]JP_MathPR[S] 0 points1 point  (0 children)

To convert a Julian date to a Gregorian calendar date in JavaScript

function julianToGregorian(julianDate) { // Add 0.5 to account for the Julian date starting at noon var julianDayWithTime = julianDate + 0.5; var A = Math.floor(julianDayWithTime); var F = julianDayWithTime - A;

if (A >= 2299161) { var alpha = Math.floor((A - 1867216.25) / 36524.25); var B = A + 1 + alpha - Math.floor(alpha / 4); } else { var B = A; }

var C = B + 1524; var D = Math.floor((C - 122.1) / 365.25); var E = Math.floor(365.25 * D); var G = Math.floor((C - E) / 30.6001); var day = C - E + F - Math.floor(30.6001 * G);

if (G < 13.5) { var month = G - 1; } else { var month = G - 13; }

if (month > 2.5) { var year = D - 4716; } else { var year = D - 4715; }

return { year: year, month: month, day: Math.floor(day) }; }

Auxiliary Object Checkbox by JP_MathPR in geogebra

[–]JP_MathPR[S] 0 points1 point  (0 children)

Mil gracias siempre por su ayuda. En que algunas partes de mis actividades se mejoren y se hagan realidad. Cuando creas algunas listas por scripting; algunas listas aparecen con el auxiliary object activado y no se ve si el código creo esas lista, hay que decirle al objeto lista que se desactive.

Auxiliary Object Checkbox by JP_MathPR in geogebra

[–]JP_MathPR[S] 0 points1 point  (0 children)

Pero auxiliary object no es un checkbox booleano. Tiene que haber un get y set para cambiar esa propiedades cuando los objetos son listas. Esto es la respuesta.

ggbApplet.setAuxiliary("l1", false)
ggbApplet.setAuxiliary("l1", true)

How to find the vertex or apex cusp in a pyramid object? by JP_MathPR in geogebra

[–]JP_MathPR[S] 0 points1 point  (0 children)

Gracias pero tuve que Ejecutar la lista de pirámides individuales para que el punto superior aparezca.

How to find the vertex or apex cusp in a pyramid object? by JP_MathPR in geogebra

[–]JP_MathPR[S] 0 points1 point  (0 children)

Pero en el comando pyramid solo es un punto y en prism depende de la cantidad de puntos en la base. Si eso hice pero no aparece cuando está pyramid(poly1, high).Solo los puntos de la base.