Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so:
x = [1 2 3 4]
Commas are optional, s...
De-dupe
Remove all the redundant elements in a vector, but keep the first occurrence of each value in its original location. So if
a =...
4年弱 前
回答済み Simulink support package for arduino
Hey Maniruz,
Check out this MATLAB answer
https://in.mathworks.com/matlabcentral/answers/735262-arduino-test-connection-build...
4年弱 前 | 0
回答済み Building times series forecasting using MLP
Hi Wissal,
Time series forecasting can be conducted with a feedforward network in MATLAB.
Two cases can arise for time series...
回答済み help me with a canny edge detector.
Hi Anu,
To improve the performance of canny edge detector, follow this link
https://in.mathworks.com/matlabcentral/answers/160...
4年弱 前 | 0
回答済み All possible path between two points
Hi Prince,
Looks like you are trying to solve a graph problem.
To find all possible path between two nodes there are certain a...
回答済み implementing soft voting in matlab
Hi Nagwa,
Check out this demonstration of the Soft Voting Algorithm
Soft Voting Algorithm Demonstration - File Exchange - MATL...
4年弱 前 | 0
回答済み Automatic highlighting with split screen
Hi Matthew,
I tried to reproduce it at my end and the automatic variable highlighting was working fine for the version 2022a.
...
4年弱 前 | 0
回答済み How could i run the loop?
Hey Rameswari,
You are facing the issue in this line.
q(i)=sqrt(((H+c0.*w1.*the2+b(i)).*w0.*the2)./(s.*alpha0.*del.*(1-rho(i))...
4年弱 前 | 0
回答済み Finding difficult to define the domain
Hey Sasikala,
Check the following documentation links to get a better idea of how domain works:
specify domain of a function -...
4年弱 前 | 0
解決済み
Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...
4年弱 前
解決済み
Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the numbers. Otherwise return false.
Example...