help-octave
[Top][All Lists]
Advanced

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

Re: Problem creating compiled oct file


From: babelproofreader
Subject: Re: Problem creating compiled oct file
Date: Sat, 3 Oct 2009 07:47:30 -0700 (PDT)

C++ has a much more strict type system, so you can't expect it to work
out types for you at run-time. You need to do something like

  ColumnVector c = args (0).column_vector_value ();
  octave_stdout << c (0) << std::endl;

What syntax would I use to access the individual elements of c?

-- 
View this message in context: 
http://www.nabble.com/Problem-creating-compiled-oct-file-tp25727690p25729477.html
Sent from the Octave - General mailing list archive at Nabble.com.



reply via email to

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