05-16-2013 05:48 AM - edited 05-16-2013 05:51 AM
Sorry for dimension..Its 3 column.
How to do that??
1) I want to make table for voltage, capacitance and force on front penal.
2) then I want to draw xy graph for capacitance vs. force.
These two task I want to do.
Thank you very much...
05-16-2013 06:45 AM
An array with 3 columns is just an 2d array with more data.
do you realize that the array for the graph only contains the last mesured value?
I have added your VI with a 3 column 2d array added and added a methode for creating a graph for capacitance vs. force.
05-16-2013 07:15 AM
Thank you very much for reply its look fine.
I have one question that if I want to draw graph between voltage and capacitance or any other combinations then what should I have to do??
from where we can denot this axis ?
Please guide me.
Thank you very much once again for solution.
05-16-2013 07:17 AM
Got it...
05-17-2013 03:53 AM
Hello,
if I want to add array cluster to data sheet then what should I have to do.
And I also want to add columns title in the data spread sheet for example in my case voltage and one column title is capacitance and one title is force.
Please guide me.
Thank you very much.
05-17-2013 06:30 AM - edited 05-17-2013 06:31 AM
What you can do is use the spreadsheet to string and then add the column title from a different string. (see example)
some cleanup is requierd ( also of your code )
05-21-2013 03:26 AM
Thank you very much for help.
I want to know about how can I select particular element form the table.
For example Here in attachment I have attached screen shot of my vi. In that one table is there I want to select first and last element which I have marked,how can I select that particular element.
I want to do so because I want to measure difference between first and last measured value.
Please guide me.
Thank you very much in advance.
05-21-2013 03:39 AM
for this you can use "Index Array" give it the index of the array ( zero based ) and it will give you the data on the given index.
hope it helps.
05-21-2013 04:07 AM - edited 05-21-2013 04:29 AM
Thank you very much for your help.
That I got it but I don't know that how to select last element of the same column means I have to use some logic over there that when I press Stop button then the last value will be automatic detected and will be displayed on front penal.
Here I tried to implement same logic means I have given the while loop counter state direct to the input of index array but the thing is in last when I press stop button then last detected element goes to 0 other wise everything is working fine.
How to do so.??
Please guide me.
Thank you very much once again.
05-21-2013 05:38 AM
Like this.
First one determent's the array size and the second one gives the correct dimension. The -1 is for the different between size and index.