How to Store Data in a Matrix
Do you need a for loop to populate a matrix? In this video step through a few different ways to store data in a matrix in MATLAB® with and without for loops.
Published: 1 Jul 2020
In today's video on MATLAB basics, we're going to show how to store the results of a calculation inside of a vector, which is a special case of a matrix. What we're going to do is say for I is equal 1 : 10, meaning that we're going to count from 1 to 10. Now inside of this loop what we're going to do is say Y is equal to I plus rand. So we're going to just have a random number generated—somewhere between 0 and 1—and add it to the current value of I, and end.
So I want to actually see the results of this. So I'm going to take the semicolon off. Now let's run this. I'm going to run it by hitting F5, which means save and run the current file. And we can see we've gone through this loop 10 times and gotten different values of Y.
Now what if we wanted to plot those? Well, every time through this loop we have overwritten the value of Y so we lost, like for instance, 9.528 when we generated 10.857. That isn't going to do very well if we want to plot this data.
So what we can do is come in here and say I want to make Y into a vector. So every time through the loop now this statement is going to read Y element 1 or 2, or 3, or 4, is going to equal to the same thing it did before. Now let's run this again. I'm going to do that by hitting F5. And what we'll see by scrolling up through the Command Window here is that at first, we have Y is equal to a 1 by 1, then a 1 by 2, 1 by 3. And each time we keep adding another column to this. And so we're storing that data.
Now that it's done what we can do is come in here and say Plot (y), and we can see that on the graph here. So this is a very simple example of a technique that is used all the time in MATLAB where you will just take the results and store them in a matrix for easy manipulation and use later.
This would also work if you were calculating a vector each time through the loop and wanted to store it as another column. So each column might represent one time through your loop. If your calculation is creating a matrix each time, you would then use a three-dimensional matrix, and so on. MATLAB actually supports n-dimensional matrices, so you can see how this can work for multiple dimensions.
Thank you.
Featured Product
MATLAB
웹사이트 선택
번역된 콘텐츠를 보고 지역별 이벤트와 혜택을 살펴보려면 웹사이트를 선택하십시오. 현재 계신 지역에 따라 다음 웹사이트를 권장합니다:
또한 다음 목록에서 웹사이트를 선택하실 수도 있습니다.
사이트 성능 최적화 방법
최고의 사이트 성능을 위해 중국 사이트(중국어 또는 영어)를 선택하십시오. 현재 계신 지역에서는 다른 국가의 MathWorks 사이트 방문이 최적화되지 않았습니다.
미주
- América Latina (Español)
- Canada (English)
- United States (English)
유럽
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
아시아 태평양
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)