Feeds
질문
How to do computation in local function?
function [a,b] = c(d,e) a = d+e; b = d.*e; The following MATLAB script utilizes a local function and the c function mentioned...
거의 4년 전 | 답변 수: 1 | 0
1
답변질문
How to vectorize the MATLAB code?
This is the code that I have written and I saw articles about vectorization. N = length(a); b = zeros(1,N - 1); for i = 1:N-1...
거의 4년 전 | 답변 수: 1 | 0
