Mercurial > hg > ltpda
view m-toolbox/test/test_cdata_class.m @ 11:9174aadb93a5 database-connection-manager
Add LTPDA Repository utility functions into utils.repository
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 16:20:06 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
function test_cdata_class() % Test script for cdata class. % % M Hewitson 15-03-07 % % $Id: test_cdata_class.m,v 1.9 2008/09/05 14:18:36 hewitson Exp $ % % Simple constructor c = cdata % With values and tags c = cdata([1 2 3]); pl = plist('Markers', {'o'}); iplot(ao(c), pl) % Constant c = cdata(2.3) % from plist % c = cdata(plist(param('fcn', 'randn(10,1)'))) % iplot(ao(c), pl) % END