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 years 前 | 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 years 前 | 1 个回答 | 0
