Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

How to calculate it in Matlab?

1 visualizzazione (ultimi 30 giorni)
ihs ihs
ihs ihs il 27 Mag 2020
Chiuso: MATLAB Answer Bot il 20 Ago 2021
I have vectors . How to calculate or in Matlab?

Risposte (2)

Mohammad Sami
Mohammad Sami il 27 Mag 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 il 27 Mag 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