Question: How do I post my Maple code in here properly formatted?

Hello,

I have

-Copy

-Copy full precision

-Copy as MathML

-Why am I able to use whatever strange copy method I have the feeling is useless to me but no simple, plain Copy? Why? Why were you able to implement strange copy functions but not one like the simple one of Windows Notepad.exe's and whatsoever? Or what am I doing wrong?

and whatever option I choose, and whatever method I try I'm not able to Copy & Paste my code in here so that it's properly formatted. Only garbage gets put out and I tried the Maple Tag and the Paste Method with an extra form (Why a form for a simple CTRL + V anyway?)

For example:

restart; with(AudioTools); with(ArrayTools); readlib(FFT); clarinet := cat("C:/Documents and Settings/.../Desktop/", "klar.wav"); church := cat("C:/Documents and Settings/.../Desktop/", "church.wav"); x := Read(clarinet); y := Read(church); h := Array(1 .. 2^16, datatype = float[8], storage = rectangular, order = C_order); s := Array(1 .. 2^16, datatype = float[8], storage = rectangular, order = C_order); ArrayTools[Copy](x, h); ArrayTools[Copy](y, s); setattribute(h, attributes(x)); setattribute(s, attributes(y)); hi := Array(1 .. 2^16, datatype = float[8], storage = rectangular, order = C_order); si := Array(1 .. 2^16, datatype = float[8], storage = rectangular, order = C_order); setattribute(hi, attributes(h)); setattribute(si, attributes(s)); FFT(2, h, hi); FFT(2, s, si); H := h+hi; S := s+si; Z := Array(1 .. 2^16, datatype = float[8], storage = rectangular, order = C_order); ArrayTools[Copy](H*S, Z); Zreal := Re(Z); setattribute(Zreal, attributes(s)); iFFT(2, Zreal, Z); Write("C:/Documents and Settings/.../Desktop/h.wav", h); Write("C:/Documents and Settings/.../Desktop/s.wav", s); Write("C:/Documents and Settings/.../Desktop/output.wav", Zreal)

Please Wait...