Youssef El Seblani
Followers: 0 Following: 0
Statistica
RANK
18.609
of 295.467
REPUTAZIONE
2
CONTRIBUTI
0 Domande
4 Risposte
ACCETTAZIONE DELLE RISPOSTE
0.00%
VOTI RICEVUTI
1
RANK
18.023 of 20.234
REPUTAZIONE
2
VALUTAZIONE MEDIA
0.00
CONTRIBUTI
1 File
DOWNLOAD
1
ALL TIME DOWNLOAD
20
RANK
of 153.912
CONTRIBUTI
0 Problemi
0 Soluzioni
PUNTEGGIO
0
NUMERO DI BADGE
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
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...
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 |
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
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