Times 2 - START HERE
Try out this test problem first.
Given the variable x as your input, multiply it by two and put the result in y.
Examples:...
대략 7년 전
답변 있음 Index exceeds the number of array elements
Hello,
I have tried to run you code.
I regconized that after the loop j = 2 the "errorTL = 2.0201e-06" that is smaller then ...
답변 있음 Trying to do an integral
Hello,
The problem is that if you use symbolic "y" and "h" in your way, it will not give you the result.
But if you put "h" e...
대략 7년 전 | 0
답변 있음 Finite Difference Coding Mistake
In your code, there was a mistake,
%define transport matrix
% At=zeros(N,N);
% At=At+diag(ones(N-1,1),1);
% At=At-diag(on...
답변 있음 How to read a term of the file
Hello,
Here is a solution that you can refer:
clear
format long
a = readtable('force1.dat','HeaderLines',4);
b = a(:,4);...