Feeds
提问
Save variable number in matrix for later iteration
Ok, this is the code I have: clc, clearvars, home, lim = input("Limit value: "); V = zeros(1,lim); V(1) = 5; for i = 2:...
1 month 前 | 2 个回答 | 0
2
个回答提问
Plot Lagrange parabolas for a Simpson's composite rule
This is my code: clearvars; close all; clc; f =@ (x) 2 + sin((pi/20)*x) + sin((pi/3)*x); x0 = input("Inferior limit in x ...
2 years 前 | 1 个回答 | 0
