octave-maintainers
[Top][All Lists]
Advanced

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

Re: hist3 statistics 1.2.4


From: ciccero
Subject: Re: hist3 statistics 1.2.4
Date: Thu, 5 May 2016 21:02:25 -0700 (PDT)

Great job, with the function!!! 
But it is still returning a transpose matrix, 
if i use it without returning parameters it's show a beatifull graph(thanks
for that, i liked) with the correct values, but if you used returning
parameters and try to plot a surface or mesh, it is plotting wrong, only it
is plotting ok if i plot the transpose matrix.
i used the same first example in the function:

X = [1 1; 1 1; 1 10; 1 10; 5 5; 5 5; 5 5; 5 5; 5 5; 7 3; 7 3; 7 3; 10 10; 10
10];
hist3(X);
xlabel('X');
ylabel('Y');
%This is right

X = [1 1; 1 1; 1 10; 1 10; 5 5; 5 5; 5 5; 5 5; 5 5; 7 3; 7 3; 7 3; 10 10; 10
10];
a=hist3(X);
mesh(a);
xlabel('X');
ylabel('Y');
%This is wrong, only if you use mesh(a');











--
View this message in context: 
http://octave.1599824.n4.nabble.com/hist3-statistics-1-2-4-tp4676721p4676788.html
Sent from the Octave - Maintainers mailing list archive at Nabble.com.



reply via email to

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