Hallo,
hab mal ne Frage. Ich möchte verschiedene Werte eines Zwei Dimensionalen Array automatisch in Linien ausgeben. Ich arbeite mit dem Programm : Processing.
Bis jetzt sieht mein Programm Code so aus:
Nun wird mir als Fehlermeldung immer:
"The method line (float,float,float,float) in the type PApplet is nor applicable for the arguments (float, float, float[],float)"
angezeigt.
Mir ist klar, das das Problem darin liegt, das ich en Array Wert in meiner Linie als x2, angegeben habe. Wie bekomme ich es hin, das das Programm, den Wert aus dem Array nimmt ??
vielen Dank schon einmal im vorraus.
hab mal ne Frage. Ich möchte verschiedene Werte eines Zwei Dimensionalen Array automatisch in Linien ausgeben. Ich arbeite mit dem Programm : Processing.
Bis jetzt sieht mein Programm Code so aus:
Java:
float[][] messwerte = {{7, 40, 42, 45, 51, 59, 67, 110, 0, 150, 190, 209, 232, 245, 250, 249, 240, 230, 208, 180, 160, 110, 89,70 },
{0,0,0,0,0,0,0,0,0,0,0,0},
{0,1}
};
float x = 0;
float y = 15;
for ( int index = 0; index < messwerte.length; index++)
{
for (int index2 = 0; index2 <=index; index2++)
{
println(messwerte[index2]);
line(x,y,messwerte[index2],y);
}
}
"The method line (float,float,float,float) in the type PApplet is nor applicable for the arguments (float, float, float[],float)"
angezeigt.
Mir ist klar, das das Problem darin liegt, das ich en Array Wert in meiner Linie als x2, angegeben habe. Wie bekomme ich es hin, das das Programm, den Wert aus dem Array nimmt ??
vielen Dank schon einmal im vorraus.
Zuletzt bearbeitet von einem Moderator: