How can I analyze the sum and product together in a code?

조회 수: 4 (최근 30일)
Mitrabarun Ghosh
Mitrabarun Ghosh 2024년 4월 3일
댓글: Mitrabarun Ghosh 2024년 7월 22일
Hello,
I have just started to learn matlab and tried to solve the following equations:
where,
and the values of alpha(j) will be retrieved from an excel file containing 10 values of it.
Can someone let me know the procedure?
Thank you
  댓글 수: 1
Torsten
Torsten 2024년 4월 3일
What do you mean by "solve the following equations" ? Do you mean "compute T(N) from the alpha-vector" ?

댓글을 달려면 로그인하십시오.

답변 (2개)

Hassaan
Hassaan 2024년 4월 3일
An initial Idea:
% Assuming the Excel file is named 'alpha_values.xlsx' and the values are in the first column
alpha = xlsread('alpha_values.xlsx', 'A1:A10'); % Adjust the range based on the actual data location
% Compute the denominator of π(N, O)
product_terms = cumprod(alpha); % Cumulative product of alpha values
denominator = 1 + sum(product_terms);
% Calculate π(N, O)
pi_N_O = 1 / denominator;
% Initialize the sum for T(N)
T_N_sum = 0;
% Calculate the sum for T(N)
for i = 1:length(alpha)
if i == 1
product = 1; % The product term for i=1 is 1 since it has no previous alpha values
else
product = product_terms(i-1); % Product of all alpha values up to i-1
end
T_N_sum = T_N_sum + ((i - 1) * product);
end
% Finally, compute T(N)
T_N = pi_N_O * T_N_sum;
% Display the result
disp(T_N);
-----------------------------------------------------------------------------------------------------------------------------------------------------
If you find the solution helpful and it resolves your issue, it would be greatly appreciated if you could accept the answer. Also, leaving an upvote and a comment are also wonderful ways to provide feedback.
It's important to note that the advice and code are based on limited information and meant for educational purposes. Users should verify and adapt the code to their specific needs, ensuring compatibility and adherence to ethical standards.
Professional Interests
  • Technical Services and Consulting
  • Embedded Systems | Firmware Developement | Simulations
  • Electrical and Electronics Engineering
Feel free to contact me.

Torsten
Torsten 2024년 4월 3일
편집: Torsten 2024년 4월 3일
rng("default")
N = 10;
mu = 1;
alpha = rand(1,N);
alphap = cumprod(alpha);
fak = factorial(0:N);
terms_numerator = alphap./(fak(1:end-1).*mu.^(0:N-1));
terms_denominator = alphap./(fak(2:end).*mu.^(1:N));
format long
T = sum(terms_numerator) / (1 + sum(terms_denominator))
T =
0.733481020109729

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by