Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

How to calculate it in Matlab?

1 vue (au cours des 30 derniers jours)
ihs ihs
ihs ihs le 27 Mai 2020
Clôturé : MATLAB Answer Bot le 20 Août 2021
I have vectors . How to calculate or in Matlab?

Réponses (2)

Mohammad Sami
Mohammad Sami le 27 Mai 2020
You have two options.
First option is to use symbolic sum "symsum" if you have symbolic math toolbox.
syms y;
N = 10;
F1 = symsum(y^2,k,1,N);
The second option is to evaluate the expression then sum it.
f = @(y) y.^2;
N = 10;
y = 1:N;
F1 = sum(f(y));

Image Analyst
Image Analyst le 27 Mai 2020
Try this with your two vectors that you say you already have:
% Define some x and y (you apparently already have these but I need to make them).
x = 2 : 3 : 50; % Whatever....
y = 1 : 40
% Define N and do the two sums:
N = 3;
sum1 = sum(y(1:N).^2)
sum2 = sum(x(1:N).* y(1:N))

Community Treasure Hunt

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

Start Hunting!

Translated by