12-17-2007 11:44 PM
12-18-2007 10:48 AM
02-21-2008 10:42 AM
property node? how do i get this?
after i plot the graph, i click on it and it will get the data for me?
02-21-2008 10:46 AM
how to extract data for a particular column from a .txt. let's say i got 5 columns. how to i extract just the 5th column to plot my graph.
clear all
fid=fopen(relay.txt','r');
g=(fscanf(fid,'%f',[5,inf]))';
status=fclose(fid);
plot( g)
grid
xlabel('Time')
ylabel('Temperature')
title ('Temperature of bakeplate')
it gives me 5 plots within a graph instead of just one y values.
02-21-2008 11:17 AM
Right-click the graph and select Create > Property Node > Cursor > Cursor Position > All Elements. You can then wire that property node to something else (like an indicator).
@nonmm wrote:
property node? how do i get this?
after i plot the graph, i click on it and it will get the data for me?
@nonmm wrote:
how to extract data for a particular column from a .txt. let's say i got 5 columns. how to i extract just the 5th column to plot my graph.
clear all
fid=fopen(relay.txt','r');
g=(fscanf(fid,'%f',[5,inf]))';
status=fclose(fid);plot( g)
grid
xlabel('Time')
ylabel('Temperature')
title ('Temperature of bakeplate')it gives me 5 plots within a graph instead of just one y values.
02-21-2008 11:57 AM
02-21-2008 12:05 PM
02-21-2008 12:17 PM
02-21-2008 01:05 PM
02-21-2008 01:10 PM