Generate a matrix with alternative positive and negative values with ones

20 次查看(过去 30 天)
Hello, Any idea how to generate a matrix with ones with positive and negative values. For example
We know,
A=ones(n,1)=[1;1;1;1], if n=4
I would like a matrix like this:
A=[1;-1;1;-1]
However, n will change of size depending on the processed data.
On the other hand, I would like to generate a matrix with the following form
if n=10
A=[1;0.5;0;-0.5;-1;-.5;0;0.5;1;0.5], the n value can change depending on the uploaded data.
Thank you.

采纳的回答

John D'Errico
John D'Errico 2023-7-21
编辑:John D'Errico 2023-7-21
Learn to use various tools in MATLAB. In this case, mod will help you. Forexample:
n = 4;
mod(1:n,2)
ans = 1×4
1 0 1 0
Does that get you close to what you want? You want a column. But that is easy. And you want +/-1. Also easy.
mod((1:n)',2)*2 - 1
ans = 4×1
1 -1 1 -1
Simple enough. Again, look for your target, and think of what you can do to get there.
As for the second case, it is not clear what general pattern you expect in there. If n was larger, would the step still be 0.5? Would this be a periodic function? Or a simple V-shape?
  2 个评论
Jorge Luis Paredes Estacio
Thank you very much, concering to your question. It could be like a random signal (interms of amplitudes), not necesarily a V shape.
John D'Errico
John D'Errico 2023-7-21
编辑:John D'Errico 2023-7-21
A v-shape is most simply achieved using abs. Again, look for something that gets you close to your target. For example:
n = 9;
abs((1:n) - (n+1)/2)
ans = 1×9
4 3 2 1 0 1 2 3 4
Now we can scale those numbers. and put in a shift.
abs((1:n) - (n+1)/2)/2
ans = 1×9
2.0000 1.5000 1.0000 0.5000 0 0.5000 1.0000 1.5000 2.0000
V = abs((1:n) - (n+1)/2)/2 - 1
V = 1×9
1.0000 0.5000 0 -0.5000 -1.0000 -0.5000 0 0.5000 1.0000
plot(V,'-o')

请先登录,再进行评论。

更多回答(2 个)

Dyuman Joshi
Dyuman Joshi 2023-7-21
n = 10;
vec = (0:n-1)';
%Array A
A = cospi(vec)
A = 10×1
1 -1 1 -1 1 -1 1 -1 1 -1
%Array B
vec0 = vec+4;
B = 4*abs(vec0/8-floor(vec0/8+0.5))-1
B = 10×1
1.0000 0.5000 0 -0.5000 -1.0000 -0.5000 0 0.5000 1.0000 0.5000

Steven Lord
Steven Lord 2023-7-21
Another approach:
r = 4;
c = 5;
A = (-1).^((1:r).' + (1:c))
A = 4×5
1 -1 1 -1 1 -1 1 -1 1 -1 1 -1 1 -1 1 -1 1 -1 1 -1

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by