Class ml: Constructors
ml(double re, double im)
{
this.re = re;
this.im = im;
}
ml(double re)
{
this( re, 0.0 );
}
ml(int re)
{
this( (double)re, 0.0 );
}
ml(int re, double im)
{
this( (double)re, im );
}
ml(double re, int im)
{
this( re, (double)im );
}
Previous slide
Next slide
Back to first slide
View graphic version