small typo in super_obs.m

Bug reports, work arounds and fixes

Moderators: arango, robertson

Post Reply
Message
Author
cae
Posts: 36
Joined: Mon Jun 30, 2003 5:29 pm
Location: UC Santa Cruz

small typo in super_obs.m

#1 Unread post by cae »

Hi.

In Release 736, lines 309-311 are

Code: Select all

if (isfield(Sinp,'origin_flag_values'));
  Sout.origin_flag_values = Sinp.state_flag_values;
end,
but should (I think) be

Code: Select all

if (isfield(Sinp,'origin_flag_values'));
  Sout.origin_flag_values = Sinp.origin_flag_values;
end,

Post Reply