Filter löschen
Filter löschen

Info

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

chebyshev differentiation matrices codes not callable

2 Ansichten (letzte 30 Tage)
Lukgaf
Lukgaf am 19 Mär. 2018
Geschlossen: Walter Roberson am 19 Mär. 2018
% check the base case
if N == 0; D = 0; x = 1; return; end
% create the Chebyshev grid
x = cos(pi*(0:N)/N)';
c = [2; ones(N-1,1);2].*(-1).^(0:N)';
X = repmat(x,1,N+1);
dX = X-X';
D = (c*(1./c)')./(dX+(eye(N+1)));
D = D - diag(sum(D'));
  1 Kommentar
Walter Roberson
Walter Roberson am 19 Mär. 2018
Duplicated by the later https://www.mathworks.com/matlabcentral/answers/389165-chebyshev-differential-matrices-code-not-callable which appears to be more complete

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