I try to give better picture of code as follows:
[code] DPlot.DataFormat = DATA_XYXY; //DATA_XYXY
DPlot.MaxCurves = 1;
DPlot.NumCurves = 1;
DPlot.MaxPoints = m ;
DPlot.NP[0] = DPlot.MaxPoints ;
DPlot.SymbolType[0] = SYMBOLSTYLE_DOT ;
DPlot.LineType[0] = LINESTYLE_NONE ;
sprintf(DPlot.Title[0 ...
Search found 11 matches
- Fri Nov 10, 2006 9:17 am
- Forum: Suggestions/Questions
- Topic: FileSaveAs won't save curren ManualScale
- Replies: 3
- Views: 11727
- Fri Nov 03, 2006 11:18 am
- Forum: Suggestions/Questions
- Topic: FileSaveAs won't save curren ManualScale
- Replies: 3
- Views: 11727
FileSaveAs won't save curren ManualScale
DPlot_Plot, ManualScale work fine.
FileSaveAs also works fine but it won't take the updated plot after ManualScale.
i [code]f ((DocNum = DPlot_Plot(&DPlot,X,Y,NULL)) <= 0) return -3 ;
if (dPlot_Command(DocNum, "[ManualScale(,-0.08,,0.08)]") <= 0) return -4;
if dPlot_Command(DocNum,"[FileSaveAs(1 ...
FileSaveAs also works fine but it won't take the updated plot after ManualScale.
i [code]f ((DocNum = DPlot_Plot(&DPlot,X,Y,NULL)) <= 0) return -3 ;
if (dPlot_Command(DocNum, "[ManualScale(,-0.08,,0.08)]") <= 0) return -4;
if dPlot_Command(DocNum,"[FileSaveAs(1 ...
- Thu Feb 09, 2006 10:47 am
- Forum: Suggestions/Questions
- Topic: 3DR dPlot_ZFromXY and AddData command
- Replies: 2
- Views: 10465
- Wed Feb 08, 2006 9:55 am
- Forum: Suggestions/Questions
- Topic: 3DR dPlot_ZFromXY and AddData command
- Replies: 2
- Views: 10465
3DR dPlot_ZFromXY and AddData command
David,
1. I tried to run AddData fast for repeated process by [code]dPlot_AddData(DocNum, DATA_3DR, 900, 1, NULL, X) ;
dPlot_Command(DocNum,"[GenerateMesh(120,120,-0.5,-0.5,29.5,29.5,0,1,4)]") ;
DocNum++ ;
dPlot_Command(DocNum,"[FileSaveAs(1,\"surfaceMax.grf\")]") ;
dPlot_Command(2, "[FileClose ...
1. I tried to run AddData fast for repeated process by [code]dPlot_AddData(DocNum, DATA_3DR, 900, 1, NULL, X) ;
dPlot_Command(DocNum,"[GenerateMesh(120,120,-0.5,-0.5,29.5,29.5,0,1,4)]") ;
DocNum++ ;
dPlot_Command(DocNum,"[FileSaveAs(1,\"surfaceMax.grf\")]") ;
dPlot_Command(2, "[FileClose ...
- Mon Jan 30, 2006 3:18 am
- Forum: Suggestions/Questions
- Topic: 3DR contour method and efficiency
- Replies: 1
- Views: 9035
3DR contour method and efficiency
David,
what is contour analysis method used? Is Barnes, Cressman or others?
I used DPLOT generating huge quantity of files by GenerateMesh command[code]dPlot_Command(DocNum,"[GenerateMesh(1199,279,0,0,1199,27,0,1,4)]")[/code] foollowed by[code]dPlot_AddData(DocNum, DATA_3DR, 33600, 1, NULL, sdgZone ...
what is contour analysis method used? Is Barnes, Cressman or others?
I used DPLOT generating huge quantity of files by GenerateMesh command[code]dPlot_Command(DocNum,"[GenerateMesh(1199,279,0,0,1199,27,0,1,4)]")[/code] foollowed by[code]dPlot_AddData(DocNum, DATA_3DR, 33600, 1, NULL, sdgZone ...
- Tue Sep 20, 2005 11:25 pm
- Forum: Suggestions/Questions
- Topic: dplot dde repeatedly use
- Replies: 4
- Views: 13623
dplot dde repeatedly use
David,
Thanks, I am working fine at dplot_Dplot.
By the way, which one is faster, dplot_dplot or dplot_AddData?
Tom
Thanks, I am working fine at dplot_Dplot.
By the way, which one is faster, dplot_dplot or dplot_AddData?
Tom
- Mon Sep 19, 2005 8:36 am
- Forum: Suggestions/Questions
- Topic: dplot dde repeatedly use
- Replies: 4
- Views: 13623
dplot dde repeatedly use
I spent 2 days on this. Still need help.
What I want is to continue plot and save manys through dde. It works to me one by one but not on loop. It promps "Error Processing This Command/ [Activate[2]" for loop more thane one. I did try to check status "Ready" or "Busy". It alway "Ready" in this case ...
What I want is to continue plot and save manys through dde. It works to me one by one but not on loop. It promps "Error Processing This Command/ [Activate[2]" for loop more thane one. I did try to check status "Ready" or "Busy". It alway "Ready" in this case ...
- Sun Sep 18, 2005 4:29 am
- Forum: Suggestions/Questions
- Topic: dPlot_Command FileSaveAs
- Replies: 3
- Views: 12214
dPlot_Command FileSaveAs
Thanks.
I tried [code]dPlot_Command(DocNum,"[FileSaveAs(1,Filename]");
It promps "Error Processing Command [FileSaveAs(1,Filename]" at DPLOT
What shall I do to makt it right?
or I tried [/code],"[FileSaveAs(1,"ex01.grf"]");
Compliling error shown "syntax error : missing ')' before identifier 'ex01 ...
I tried [code]dPlot_Command(DocNum,"[FileSaveAs(1,Filename]");
It promps "Error Processing Command [FileSaveAs(1,Filename]" at DPLOT
What shall I do to makt it right?
or I tried [/code],"[FileSaveAs(1,"ex01.grf"]");
Compliling error shown "syntax error : missing ')' before identifier 'ex01 ...
- Sat Sep 17, 2005 12:02 am
- Forum: Suggestions/Questions
- Topic: dPlot_Command FileSaveAs
- Replies: 3
- Views: 12214
dPlot_Command FileSaveAs
It comes with compiling error(syntax error : missing ')' before identifier 'Tab' when I run
[code]dPlot_Command(DocNum,"[FileSaveAs("Tab-separated values",Filename)]");
After I changed parameter 1 to be numbers like 1, it works.
Question: what is value for "Tab-separated values"?
Shall I add 1 to ...
[code]dPlot_Command(DocNum,"[FileSaveAs("Tab-separated values",Filename)]");
After I changed parameter 1 to be numbers like 1, it works.
Question: what is value for "Tab-separated values"?
Shall I add 1 to ...
- Fri Sep 16, 2005 5:30 am
- Forum: Suggestions/Questions
- Topic: GenerateMesh(DDE)
- Replies: 1
- Views: 8419
GenerateMesh(DDE)
Thanks for AddData(DDE) answer.
I went smooth having a Data-3DR 30*30 plot display which is great.
Then I executeded GenerateMesh(DDE). It did generate a new document with specified value at x and y but it didn't bring over and calculate all Z'values at previous document. All Z'value are zero at new ...
I went smooth having a Data-3DR 30*30 plot display which is great.
Then I executeded GenerateMesh(DDE). It did generate a new document with specified value at x and y but it didn't bring over and calculate all Z'values at previous document. All Z'value are zero at new ...
- Thu Sep 15, 2005 9:23 am
- Forum: Suggestions/Questions
- Topic: dPlot_AddData for DATA_3DR
- Replies: 1
- Views: 8353
dPlot_AddData for DATA_3DR
Would any one help me about how to do with "X,Y,Z triplets (in the order x(0),y(0),z(0),x(1),y(1),z(1),... etc.) "? Is it in array1 or array2 or else?
would anyone supply me a copy of plugin Ztable.dll and Ztable-example.txt listed at 2005/05/29 topic(Plotting 3D Surface from an Array of Data ...
would anyone supply me a copy of plugin Ztable.dll and Ztable-example.txt listed at 2005/05/29 topic(Plotting 3D Surface from an Array of Data ...