cesar torres

45 Reputation

5 Badges

14 years, 34 days

MaplePrimes Activity


These are replies submitted by cesar torres

@acer Thanks a lot

 

I'm using Maple 15 for Mac.

What does the 8 in your statement means? number of decimal places?

From what I see, do I have to define the data type when generating my array?

@acer someone it seems to work if i create a matrix on the Document interface but for instance if I try to use embedded components such as a slider and a plot it just doesn't work :-(

If I insert any matrix and give the instruction to plot some columns it works fine but not if I generate the array from coding an embedded component.

there is something wrong that I haven't noticed. I always get a very strange graph.

 

Slider code (Action When Value Changes):

 

A := Array(1 .. 5, 1 .. 3);

MainArray := proc ()

local i; global A;

for i from 2 to 5 do

A(i,1):=A(i-1,1)+0.5;

A(i,2):=A(i-1,2)+Do(%Slider0);

A(i,3):=A(i,2)+10*A(i,1)

end do;

end proc;

MainArray();

Do(%Plot0=plot(A[..,[3,1]]));

end use;

 

Any comments?

 

THANKS INDEED!

@acer thanks!

@Carl Love thanks!

@Carl Love Thanks!

Page 1 of 1