octave-maintainers
[Top][All Lists]
Advanced

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

Extending a single-prec array with double-prec complex throws bad_cast.


From: Jason Riedy
Subject: Extending a single-prec array with double-prec complex throws bad_cast.
Date: Sun, 01 Mar 2009 18:51:10 -0500
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.90 (gnu/linux)

The following terminates Octave's tip with a std::bad_cast from 
OPERATORS/op-fcm-fcm.cc:187:
  octave -q --eval 'y = zeros (10, 1, "single"); x = ones (10, 1) + I (); 
y(:,2) = x;'

Via gdb, the next level up where the values aren't optimized out
is octave_base_value::numeric_assign at ov-base.cc:1151. The rhs
appears to be of type "unknown", so the real error may have
occurred somewhere else.

Note that assigning to y(:,1) or using concatenation both work.

Jason


reply via email to

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