Adding entry to a matrix loop

1 次查看(过去 30 天)
I have a matix, A, of 100x200 zeros. I will be taking data from an oscilloscope that will continually be written to a matrix, B, 1X1. I want to write a loop that inputs B into the spot 1,1 of A. Then after the oscilloscope has taken new data and rewritten B, input it into spot 1,2. When the first line is complete I want the data to go into 2,1 and so on till A is full up. How might I write this loop?
  1 个评论
John D'Errico
John D'Errico 2017-1-12
编辑:John D'Errico 2017-1-12
Why pray tell, do you want to write data into a matrix along those diagonals? Where does the 4th element go?

请先登录,再进行评论。

采纳的回答

John Chilleri
John Chilleri 2017-1-12
编辑:John Chilleri 2017-1-12
Hello,
You can fill in your matrix by rows with this:
for i = 1:100
for j = 1:200
% Acquire your B
A(i,j) = B;
end
end
Hope this helps!
  3 个评论
Jacob Hollebon
Jacob Hollebon 2017-1-13
When I try and run this now, I get the error 'Attempted to access A(0,0); index must be a positive integer or logical.'
I have tried formatting A as
A = zeros (100,200,'double')
as B is variable type double. But still get the same error.
John Chilleri
John Chilleri 2017-1-13
Your loop goes from i=1:100 and j=1:200 correct? Not 0:100 and 0:200? This error occurs when you try to access A(0,0) which does not exist.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by