Youssef El Seblani
Followers: 0 Following: 0
Statistics
RANK
18.609
of 295.495
REPUTATION
2
CONTRIBUTIONS
0 Questions
4 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
1
RANK
18.023 of 20.240
REPUTATION
2
AVERAGE RATING
0.00
CONTRIBUTIONS
1 File
DOWNLOADS
1
ALL TIME DOWNLOADS
20
RANK
of 153.991
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
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...
meer dan 6 jaar ago | 0
Submitted
lagrange(x,i,a,b)
the coefficient of Newton cotes method and the Lagrange polynomial
meer dan 6 jaar ago | 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
meer dan 6 jaar ago | 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]; ...
meer dan 6 jaar ago | 0