help-octave
[Top][All Lists]
Advanced

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

Re: Accessing string values from octave_value


From: Olaf Till
Subject: Re: Accessing string values from octave_value
Date: Wed, 12 Jul 2017 12:37:19 +0200
User-agent: Mutt/1.5.23 (2014-03-12)

On Wed, Jul 12, 2017 at 02:34:40PM +0530, Shamika Mohanan wrote:
> octave_value path_dir=feval("pwd");

Correct would be:

octave_value_list outlist = feval ("pwd");

Your code constructs an octave_value from an octave_value_list. The
result can't be converted to a string.

> std::string pd  = path_dir.string_value ();

This gets:

std::string pd  = outlist(0).string_value ();

Olaf

-- 
public key id EAFE0591, e.g. on x-hkp://pool.sks-keyservers.net

Attachment: signature.asc
Description: Digital signature


reply via email to

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