How can i create a sequence?

3 次查看(过去 30 天)
Gn Gnk
Gn Gnk 2019-11-2
Hello,
I have a sequence Xn:
xn ∈ {(±1, ±i)} means xn is an element of the set [-1-i, -1+i, 1-i, 1+i] and i want to create this sequence for n=1 to N=100.How can i make this happen?
thank you.
  4 个评论
Gn Gnk
Gn Gnk 2019-11-3
Sorry but i thought i got the answer but OBVIOUSLY i didnt thats why i am asking again with the extra information the guy that previously answered my question gave it to me .I dont have any intention to repeat myself and please if you are not having anything to help me dont comment on my question.
Thank you.
John D'Errico
John D'Errico 2019-11-3
编辑:John D'Errico 2019-11-3
Then explain (comment) that the answer was not helpful.
Seome people want to just ask the same question every couple of days or even every hour, hoping to get an answer they want.
Note that your original question was quite confusing, and even after you made a comment, it was still confusing. That explains why the answer was inaccurate.
For example, even here you describe exactly 4 terms of that sequence. Should it then repeat in exactly the same sequence, so you would then have 25 repetitions of those 4 complex numbers?

请先登录,再进行评论。

回答(1 个)

Image Analyst
Image Analyst 2019-11-3
To create that "sequence for n=1 to N=100", simply do this:
for n = 1 : 100
result = [-1-1i, -1+1i, 1-1i, 1+1i] % Create this sequence of 4 values.
end
Not sure why you want that though. Take note that the i have a 1 with no space or operator in between them so that 1i = sqrt(-1), the imaginary variable.

类别

Help CenterFile Exchange 中查找有关 Startup and Shutdown 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by