Mathematics / Mathematik / Matemática

Mathematics / Mathematik / Matemática

Posts 1-6 of 6
  • Dr. Dirk Kehrwald
    Dr. Dirk Kehrwald    Premium Member   Group moderator
    The company name is only visible to registered members.
    Zeilenumbrüche in Scilab?
    Hallo zusammen,

    kann ich in Scilab irgendwie die Zeilen umbrechen?

    Anstatt

    --> function y=f(x);
    --> y = x^3 + x^2 + x;
    --> endfunction;

    möchte ich schreiben

    --> function y=f(x);
    --> y = x^3 + x^2
    --> + x;
    --> endfunction;

    Das wird aber nicht in meinem Sinn interpretiert.

    Schöne Grüße
    Dirk

    __
    Edit: Tippfehler
    This post was modified on 27 Feb 2008 at 06:04 pm.
  • Dr. Dirk Kehrwald
    Dr. Dirk Kehrwald    Premium Member   Group moderator
    The company name is only visible to registered members.
    Re: Zeilenumbrüche in Scilab?
    Hallo nochmal,

    mittlerweile ist mir ein schmutziger Trick eingefallen:

    --> function y=f(x);
    --> y = [ x^3 + x^2 ];
    --> y = [y + x];
    --> endfunction;

    Aber das muss doch irgendwie ordentlich gehen?


    Schöne Grüße
    Dirk
  • Post visible to registered members
  • Post visible to registered members
  • Post visible to registered members
  • Dr. Dirk Kehrwald
    Dr. Dirk Kehrwald    Premium Member   Group moderator
    The company name is only visible to registered members.
    Re^2: Zeilenumbrüche in Scilab?
    Vielen Dank!

    Meine Funktionen sind jetzt deutlich übersichtlicher als vorher.

    Schöne Grüße
    Dirk