vote up 0 vote down star
1

How can I do Mathematica-style

a = Table[2^(2 k) + 1, {k, 1, 3}]
Last[a], First[a]
Append[a,3]

in Octave?

flag

1 Answer

vote up 3 vote down check

I'd do this as

2 .^ (2 * [1:3]) + 1

Here, [1:3] stands for the vector [1,2,3] and .^ denotes entry-wise exponentiation.

Added after question was edited:
These are rather basic questions. I think you need to spend some time learning Octave; for instance, read through this tutorial.

link|flag
Thank you, very useful tutorial. – Heoa Sep 25 at 14:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.