Feeds
提问
Solve Function for Given Range of Inputs
syms x x = sym('x') x = -4:4 eqn = exp(-x.^2) == f(x) S = solve(eqn,x) I keep getting an error message when trying to fol...
4 years 前 | 1 个回答 | 0
1
个回答已回答
Creating a Pattern of set values within a Matrix
for the diagonals touching the diagonal containing ones, every third entry still needs to be zero. that is the only problem i am...
Creating a Pattern of set values within a Matrix
for the diagonals touching the diagonal containing ones, every third entry still needs to be zero. that is the only problem i am...
4 years 前 | 0
提问
Creating a Pattern of set values within a Matrix
function B = inf_analysis(i,j,k,N) A = ones(N^2) B = diag(diag(A)) for rows = 1:N^2; for cols = 1:N^2; B(rows...
4 years 前 | 2 个回答 | 0
