Generate a matrix with alternative positive and negative values with ones
37 ビュー (過去 30 日間)
古いコメントを表示
Jorge Luis Paredes Estacio
2023 年 7 月 21 日
コメント済み: Jorge Luis Paredes Estacio
2023 年 7 月 21 日
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.
0 件のコメント
採用された回答
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)
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
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 件のコメント
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)
Now we can scale those numbers. and put in a shift.
abs((1:n) - (n+1)/2)/2
V = abs((1:n) - (n+1)/2)/2 - 1
plot(V,'-o')
その他の回答 (2 件)
Dyuman Joshi
2023 年 7 月 21 日
n = 10;
vec = (0:n-1)';
%Array A
A = cospi(vec)
%Array B
vec0 = vec+4;
B = 4*abs(vec0/8-floor(vec0/8+0.5))-1
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!