Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

how to make the matlab code to test the equation below convergent or divergent?

2 Ansichten (letzte 30 Tage)
Muhammad Rohim
Muhammad Rohim am 21 Apr. 2020
Geschlossen: Ameer Hamza am 21 Apr. 2020
below is the matlab code that I used to solve it. but more code is needed to display the convergent or divergent equation above.
function [ Sum_n, series_1 ] = Coba5( n, es )
%Percobaan 3
clc;
clear;
n = input ('nilai signifikan: ');
series_1 = 0
es = 0.5*(10^(2-n));
for ns = 1:100
x = cumsum( sin(2*ns)./ns.^2)
series_1 = series_1 + x
end
disp([es]')
end

Antworten (0)

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by