From: Matthew Russell on
hi

I'm trying to use bar3() to plot a matrix of values. Does anyone know if the BaseValue property can be set. My matrix cotains both +ve and -ve values and the -ve ones are quite obscured by the bar. This is possible in the bar() function but I can't see a way around this with bar3().
From: Rich Ellis on
Can you achieve what you want by changing the view? Try rotate3d or use the
rotate tool on the figure toolbar.
"Matthew Russell" <matthew.remove.all.this.russell(a)arkex.com> wrote in
message news:i0hv7n$2ph$1(a)fred.mathworks.com...
> hi
>
> I'm trying to use bar3() to plot a matrix of values. Does anyone know if
> the BaseValue property can be set. My matrix cotains both +ve and -ve
> values and the -ve ones are quite obscured by the bar. This is possible in
> the bar() function but I can't see a way around this with bar3().
>


From: Matthew Russell on
"Rich Ellis" <rich(a)mathworks.com> wrote in message <i0ios3$qea$1(a)fred.mathworks.com>...
> Can you achieve what you want by changing the view? Try rotate3d or use the
> rotate tool on the figure toolbar.

Hi Rich,

I can rotate the plot but it would be nicer to be able to set the BaseValue of the bars in the same way as the the 2D bar() function. I ended up using patch objects to create the plot I needed by generating the sides of the bars with an arbitrary BaseValue that I can determine.

Thanks anyway.

Matt