Quality of applications in Maple Application Center

ynakamura's picture

I recently submitted my work to Maple Application Center
and I received a bug report from a staff. Then, I resubmitted
it after fixing bugs. However, I have a bug report again (^_^;
Yes, this is because my work was poor, but in other words,
all applications in Maple Application center that passed
strict check by staff are all guaranteed to have good quality.

I am sure that everyone can find good tools for education and
research. We should utilize them. If we can not find applications
that we want, let us develop works and submit them !

Yasuyuki Nakamura

Comments

flexibility in writedata?

writedata requires me to know whether the thing I will be writing is string, integer or floating.

I want to write a matrix where the type of entries can vary.

Is there any way to do this with writedata?

acer's picture

flexibility in writedata?

> m := matrix([[1,"t"],[3.4,17]]);
                                    [ 1     "t"]
                               A := [          ]
                                    [3.4    17 ]
 
> writedata(terminal,m,string,
>           proc(f,x::algebraic) fprintf(f,`%a`,x) end proc);
1       t
3.4     17

acer

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
}