C# Syntax

  • WPF

Es gibt 1 Antwort in diesem Thema. Der letzte Beitrag () ist von Radinator.

    C#-Quellcode

    1. Math.Pow(Convert.ToDouble(this.maxZKSpannung.Text), 2.0)
    2. - Math.Pow(Convert.ToDouble(this.nennZKSpannung.Text), 2.0)),
    3. 0.5);
    4. object left2 = Convert.ToDouble(this.Pufferkapazitaet.Text) / 1000.0; pufferkapazität/1000
    5. object obj11 =
    6. Operators.MultiplyObject(
    7. Operators.MultiplyObject(
    8. left2,
    9. Math.Pow(Convert.ToDouble(this.maxZKSpannung.Text), 2.0)
    10. - Math.Pow(Convert.ToDouble(this.nennZKSpannung.Text), 2.0)),
    11. 0.5);

    Ich analysiere momentan einen Algorithmus kann mir einer die Formel erklären habe ich diese so richtig angenommen Wurzel(maxzkspannung²-nennzwkspannung²)?
    ?(
    Also soweit ich mir noch erinner kann(9.Klasse...lang, lang ist's her ;D) hat die Formel doch wat mit Wechsel und Drehstrom zu tun
    schau mal hier vorbei, die ersten 3 Treffer dürften genügen
    In general (across programming languages), a pointer is a number that represents a physical location in memory. A nullpointer is (almost always) one that points to 0, and is widely recognized as "not pointing to anything". Since systems have different amounts of supported memory, it doesn't always take the same number of bytes to hold that number, so we call a "native size integer" one that can hold a pointer on any particular system. - Sam Harwell