Feeds
已回答
How to use a For loop to plot sine waves?
Since you did not include any errors that you are getting, I will come up with solutions based on some possible errors that you ...
How to use a For loop to plot sine waves?
Since you did not include any errors that you are getting, I will come up with solutions based on some possible errors that you ...
4 years 前 | 0
提问
How to click points in a figure to generate a function/set of data?
I remember there being a function or plugin in MATLAB that allowed the user to click on points in a figure to generate a set of ...
4 years 前 | 1 个回答 | 0
1
个回答已解决
Specific Element Count
Given a vector _v_ and a element _e_, return the number of occurrences of _e_ in _v_. Note: NaNs are equal and there may be n...
7 years 前
已解决
Getting logical indexes
This is a basic MATLAB operation. It is for instructional purposes. --- Logical indexing works like this. thresh = 4...
7 years 前
已解决
Find the largest value in the 3D matrix
Given a 3D matrix A, find the largest value. Example >> A = 1:9; >> A = reshape(A,[3 1 3]); >> islargest(A) a...
7 years 前
已解决
Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...
7 years 前