help-octave
[Top][All Lists]
Advanced

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

Automatically Combining Structures


From: Bill Denney
Subject: Automatically Combining Structures
Date: Tue, 25 Apr 2006 09:35:25 -0400
User-agent: Thunderbird 1.5.0.2 (Windows/20060308)

Hi,

Is there a way to automatically combine structures? What I'm wanting to do is something like:

a.c = 1;
a.d = 2;
b.e = 3;
b.f = 4;
g = combine(a, b)

g =
{
 c = 1
 d = 2
 e = 3
 f = 4
}

Do I have to write the function, or is it included as part of octave(-forge)?

Bill



reply via email to

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