我正在使用scilab从编码器中绘制数据。为了使用绘制的数据,我必须提取它。我一直没有看到任何有用的东西。 scilab中有一种已知的数据提取方法吗?
答案 0 :(得分:1)
在看了Matlab中的过程后,我发现了一个类比: 以下是从scilab中提取数据的代码。您首先要在绘图窗口中选择绘图作为当前绘图:
e2=gca()//extract the current plot handler
b2=e2.children//i don t know what is this is really
b2.data(:,2)// data is a matrix containing X and Y ,in my case i want to extract Y
答案 1 :(得分:0)
以下对我有用:
只需将图选择为当前图并从命令提示符处获取它的句柄即可:
h = gca();
然后检索多边形手柄:
p = h.children;
最后获得如下图的句柄:
c = p.children;
打印绘图数据:
c.data