photo

Youssef El Seblani


Last seen: 거의 3년 전 2018년부터 활동

Followers: 0   Following: 0

통계학

All
  • First Submission
  • Revival Level 1
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
How to substitute multiple values in symbolic matrix?
clc clear syms x y z w N=[ w+y+z,x/2 - y/3 + z/3, x*y, x+z] A=sym('X',[1,4]) N(A) = subs(N,[x, y, z, w],A) for example N...

6년 초과 전 | 0

제출됨


lagrange(x,i,a,b)
the coefficient of Newton cotes method and the Lagrange polynomial

6년 초과 전 | 다운로드 수: 1 |

답변 있음
Multiplying Function Handles in Product of Sequence application
function [li]=lagrange(x,i) c=x(i); x(i)=[]; syms X; f(X)=prod( (X-x)./(c-x)); li=f(X); end

6년 초과 전 | 0

답변 있음
Neumann boundary condition-matlab code
your code is not clear

6년 초과 전 | 1

답변 있음
How to get index of for each block
you can utilize this code A{i} for each block. example clc clear A{1,1}=[1,2]; A{1,2}=[1,3]; A{2,1}=[2,3]; A{2,2}=[2,4]; ...

6년 초과 전 | 0