Sponsored links: Algebra eBooks
 

Help Index

A

B

C

D

E

F

G

H

I

J

K

L

M

N

O

P

Q

R

S

T

U

V

W

X

Y

Z

The Maxima on-line user's manual

Algebra Calculator

Search:

Append

Function: append (<list_1>, ..., <list_n>) Returns a single list of the elements of <list_1> followed by the elements of <list_2>, ... append also works on general expressions, e.g. append (f(a,b), f(c,d,e)); yields f(a,b,c,d,e).

xvals: map(rhs,solve(x^2=9));
answers:[x-3=0];
mye:[];
for i:1 while i<=(length(realroots(x^2=9))) do (append(mye,subst([x=xvals[i]] ,answers)));
mye;
if(is(ratsimp((mye)))) then 100;
all;

Do example(append); for an example.

There are also some inexact matches for append. Try ?? append to see them.

(%o1)                                true
(%i2) 

Related Examples

append-block-ev-expand-hipow-ratsimp-simp

coeff_list(ex,v):= bl...

coeff_list((ratsimp((...

Calculate

append

h:[];

for i:1 thru 5 do h:a...

h;

Calculate

append-apply-block-concat-lambda-makelist-map-part-rest

subseqs_helper(prefix...

subseqs(seq, n) := su...

diffformexplicit(omeg...

Calculate

append-apply

m:(h:[],for i:0 thru ...

n:for j:1 thru 5 do h...

h;

Calculate

append-pade-plot2d-sin-taylor
plot2d([f(x), h, d[1]], [x, -6, 6], [y, -6, 6]);

f(x):=sin(x);

h:taylor(f(x), x, 0, ...

d:pade(h, 6, 6);

Calculate

append-apply-makelist

h:[];

for i:1 thru 5 do h:...

h;

Calculate

append-block-rest

a: [];

subseqs_helper(prefix...

subseqs(seq, n) := su...

Calculate

append

h:[];

for i:1 thru 5 do h:a...

h;

Calculate

append-pade-plot2d-sin-taylor
plot2d([f(x), h, d[1]], [x, -6, 6], [y, -6, 6]);

f(x):=sin(x);

h:taylor(f(x), x, 0, ...

d:pade(h, 6, 6);

Calculate