marla11

40 Reputation

2 Badges

16 years, 50 days

MaplePrimes Activity


These are questions asked by marla11

I was wondering if there was a way to restart fscanf so that after using it a certain number of times I can restart from the start of the file and read the information again.

Thanks for the help.

I have a Maple pointplot3d animation and I'm looking to take out two segments of that plot.  The segments are known and are the same throughout the animation but I want to erase them from the plots.  I tried colouring them white but when you rotate it you can tell they were there, so I was wondering if there is a way of earsing them, or colouring them clear, or something to that effect.

Thank you.

I was wondering if there was a way to have two background plots on an animation?  I would like 2 seperate parts of the animation to remain constant but I can't figure out how to do that without connecting the seperate parts.

Thanks.

 

I'm looking to display some results in my for loop but not others.  This is my code:


with(plots);
for j from 0 to 10 do
    fileName := sprintf(`destination%d.txt`, j):
    datalist := readdata(fileName, integer, 3):
    pointplot3d(datalist, style = line, linestyle = solid, thickness = 5);
end do;

 

Page 1 of 1