How can i store the two variable in an excel sheet in every iteration of the loop ?

6 ビュー (過去 30 日間)
Suppose We have two variables, y and z. In every iteration of a loop, y and z change their values. We must store the y and z values column-wise for every iteration in an Excel sheet. I attached an example of the code. So We need to store data in a D matrix(50 by 100 (Row by column)). Can you provide a solution to this problem? Your help will be appreciated.
Thank you for your help.
clc
clear
close all
x = rand(1,50).';
n = length(x);
for i = 1:n
y = sin(x);
z = cos(x);
D = [y,z];
end

採用された回答

Rahul
Rahul 2023 年 5 月 31 日
編集済み: Rahul 2023 年 6 月 1 日
Assuming that you simply need to arrange the values of D (x, y column-wise concatenated) of each iteration column-wise, without labelling the columns, we could append 50 'D' values of each iteration to an initially empty matrix T to form a 50x100 matrix, and finally insert this matrix 'T' into an excel spreadhseet with fileName, say 'sample.xlsx' (or .xls), which will be created on the currently open folder, by appending two lines on your provided code snippet:
A good tip form @Walter Roberson, to pre-allocate dimensions for the 'T' matfrix for better efficiency:
clc
clear
close all
% Initializing Random variable x
x = rand(1,50).';
n = length(x);
T = zeros(n, 2*n);
% Looping over 50 iterations
for i = 1:n
y = sin(x);
z = cos(x);
% Storing current iteration values
T(:, 2*i - 1) = y;
T(:, 2*i) = z;
end
% Writing to an excel spreadhseet
fileName = 'sample.xlsx';
writematrix(T, fileName);
You can even refer to the writematrix function documentation, to read further about the function or customize it as per your needs.
  3 件のコメント
Walter Roberson
Walter Roberson 2023 年 6 月 1 日
T(:, 2*n - 1) = y;
wrong index. n is constant relative to that loop, so you are always writing to the same locations in the loop.
Surendra Ratnu
Surendra Ratnu 2023 年 6 月 1 日
Thank you for your suggestions. it works well.

サインインしてコメントする。

その他の回答 (1 件)

Diwakar Diwakar
Diwakar Diwakar 2023 年 5 月 31 日
% Initialize the matrix D
D = zeros(50, 100);
% Loop for 50 iterations
for i = 1:50
% Calculate random values for y and z
y = rand();
z = rand();
% Store y and z values in matrix D
D(i, 1) = y;
D(i, 2) = z;
end
% Save the matrix D to a CSV file
filename = 'data.csv';
csvwrite(filename, D);

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

製品


リリース

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by