photo

Youssef El Seblani


Last seen: quasi 3 anni fa Attivo dal 2018

Followers: 0   Following: 0

Statistica

All
  • First Submission
  • Revival Level 1
  • First Answer

Visualizza badge

Feeds

Visto da

Risposto
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...

oltre 6 anni fa | 0

Inviato


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

oltre 6 anni fa | 1 download |

Risposto
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

oltre 6 anni fa | 0

Risposto
Neumann boundary condition-matlab code
your code is not clear

oltre 6 anni fa | 1

Risposto
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]; ...

oltre 6 anni fa | 0