octave-maintainers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Could someone run the attached on Matlab 2008a


From: David Bateman
Subject: Could someone run the attached on Matlab 2008a
Date: Thu, 16 Oct 2008 11:44:12 +0100
User-agent: Mozilla-Thunderbird 2.0.0.16 (X11/20080724)

Could someone run the script below on Matlab 2008a and send me the results (ie the file testhandles.mat)? I still have some doubts about what are the return types of certain graphics primitives would like to confirm that some of the changes I made for group objects are correct before finalizing that part of the code.

Regards
David


<script>
1;
close all;
h = area(1:10);
gh_area = get(h);

close all;
h = bar(1:10);
gh_bar = get(h);

close all;
[c, h] = contour (meshgrid(1:5,1:5));
gh_contour = get(h);

close all;
[c, h] = contourf (meshgrid(1:5,1:5));
gh_contourf = get(h);

close all;
h = errorbar(1:10,ones(1,10));
gh_errorbar = get(h);

close all;
h = plot (1:10);
gh_plot = get(h);

close all;
h = quiver(0:10, zeros(1,11), 0:10,-5:5);
gh_quiver = get(h);

close all;
h = scatter (rand(1,10), rand(1,10));
gh_scatter = get(h);

close all;
h = stairs(1:10,1:10);
gh_stairs = get(h);

close all;
h = stem (1:10,1:10);
gh_stem = get(h);

close all;
h = surf (meshgrid(1:5,1:5));
gh_surf = get(h);

close all;
h = surfc (meshgrid(1:5,1:5));
gh_surfc = get(h);

close all;
h = mesh (meshgrid(1:5,1:5));
gh_mesh = get(h);

close all;
h = meshc (meshgrid(1:5,1:5));
gh_meshc = get(h);

save testhandles.mat gh_area gh_bar gh_contour gh_contourf gh_errorbar ...
  gh_plot gh_quiver gh_scatter gh_stairs gh_stem gh_surf gh_surfc ...
  gh_mesh gh_meshc
</script>

--
David Bateman                                address@hidden
Motorola Labs - Paris +33 1 69 35 48 04 (Ph) Parc Les Algorithmes, Commune de St Aubin +33 6 72 01 06 33 (Mob) 91193 Gif-Sur-Yvette FRANCE +33 1 69 35 77 01 (Fax) The information contained in this communication has been classified as: [x] General Business Information [ ] Motorola Internal Use Only [ ] Motorola Confidential Proprietary



reply via email to

[Prev in Thread] Current Thread [Next in Thread]