Azzera filtri
Azzera filtri

Double Summation of complex formula with derivative

1 visualizzazione (ultimi 30 giorni)
BURAK BAYKUS
BURAK BAYKUS il 3 Gen 2021
Modificato: Jinal il 20 Giu 2024
how can i write code to write this formula?

Risposte (1)

Jinal
Jinal il 20 Giu 2024
Modificato: Jinal il 20 Giu 2024
Hi Burak,
You can make use of the Symbolic Math toolbox functions to code such equations.
Here is an example of a symbolic expression along with its coressponding matlab code:
% Create symbolic variables
syms x i j N M
% Compute symbolic sum of the series represented in the exmaple equation
S = symsum(symsum(i*cos(i*x + j^2), j, 1, M), i, 1, N);
For more information on "symsum" and "syms" please refer the following pages:
Further, you can refer to the this documentation page to look at all Symbolic Math functions available for performing calculus operations and adjust the example code to fit your usecase: https://www.mathworks.com/help/symbolic/calculus.html

Categorie

Scopri di più su Mathematics in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by