Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

How to calculate it in Matlab?

1 visualización (últimos 30 días)
ihs ihs
ihs ihs el 27 de Mayo de 2020
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
I have vectors . How to calculate or in Matlab?

Respuestas (2)

Mohammad Sami
Mohammad Sami el 27 de Mayo de 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 el 27 de Mayo de 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