QUESTION!

I am trying to create an animation of a 3d vector field in ParaView.

All my data is in three matrices (201 x 201 x 201) corresponding to vectors 
components in x,y,z directions. And it's calculated in MATLAB. If I do:

B = cat(4,Bx,By,Bz);
B = permute(B,[4 1 2 3]);
fid = fopen('Bvec.raw','w'); fwrite(fid,B,'float'); fclose(fid);


I can load Bvec.raw into ParaView and visualise the vector field at one instant 
of time.

Now, how would I go about making an animation if I had say 100 (Bx, By, Bz) 
triples at different instants of time? Without creating 100 different raw files 
and loading them into paraview by hand.

ALSO, I'm not set on using paraview, it's just the first software I tried, so 
if you think there's an easier/better/ more competent way of going about it I'd 
appreciate suggestions.?

_______________________________________________
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview

Reply via email to