Answered
How can I develop a data acquisition scheme for a multichannel measurement system?
You may start with Documentation page of Data aquisition toolbox. Examples in Data Acquisition System Development discovery p...

3 years ago | 0

Answered
How to perform cumulative product on a discrete signal in Matlab
How did you call the function? I assume you didn't pass input arguments It must be called with input arguments, like % % Cod...

3 years ago | 0

Answered
i keep getiing ' variable Remainder appears to change size on every loop itearation. Consider prelocating for speed
This is a warning to indicate that the variable 'Remainders' is not of fixed size and changes its size in every iteration of the...

3 years ago | 0

Answered
Designing a fir filter with Parks-McClellan method
I assume you are expecting a graph like this You may obtain this by changing w to w/pi while plotting figure(2) subplot(2,1...

3 years ago | 0

| accepted

Answered
fmincon fails to find a feasible solution
The following answers may help https://in.mathworks.com/matlabcentral/answers/322022-trouble-while-solving-system-of-equations-...

3 years ago | 0

Answered
Editor docking issue MATLAB 2019a and above
This is a known bug on MacOS. The developers are currently investigating this issue and will consider a fix for a future Update ...

3 years ago | 2

Answered
Buy Add-Ons Error
You may refer the following answer to add additional toolboxes to your license. https://in.mathworks.com/matlabcentral/answers...

3 years ago | 0

Answered
Matlab Symbol output in live Script
You may use sympref function with 'AbbreviateOutput' parameter set to false to avoid the creation of new variables sympref('Abb...

3 years ago | 1

| accepted

Answered
QAM With turbo coding at High SNR outputting all zeros
When output type is LLR and the NoiseVariance value is very small (i.e., SNR is very high), LLR computations may yield Inf or -I...

3 years ago | 1

| accepted

Answered
Does rxsite represent a receiving node
The object created by rxsite can be considered as a receiving antenna located at a position set by the parameters like latitude,...

3 years ago | 0

| accepted

Answered
Will MATLAB Live editor ever support spellcheck?
This issue has been brought to notice of concerned people and it might be considered in any future release. As a workaround, you...

3 years ago | 1

| accepted

Answered
Matlab Grader Reports?
Assignment in this documentation might have meant a question in the course. Refer Instructors can section of this answer https:...

3 years ago | 0

Answered
Using FFT to filter the signal
You may design a filter with passband that depends on user inputs and apply a gain to that passband. Following answer may help. ...

3 years ago | 0

Answered
Matlab+Simulink installation on Ubuntu 20.04 LTS | Installation error
You may refer this answer https://in.mathworks.com/matlabcentral/answers/479155-1-simulink-requires-a-c-compiler-for-simulation...

3 years ago | 0

Answered
Why am I receiving this error?Bundle#290 start failed: Loading C:\Program Files\MATLAB\R2019a\bin\win64\builtins\sl_main\mwlibmwsimulink_builtinimpl.dllfailed with error: The specified module could not be found.
This answer may help. https://in.mathworks.com/matlabcentral/answers/504980-why-do-i-get-a-bundle-error-message-after-updating-...

3 years ago | 0

Answered
Copying inports in Simulink: how to disable context menu?
Currently it is not possible to disable the "Duplicate" context menu item and have "Paste" as default. I have brought this iss...

4 years ago | 0

Answered
lookup table error in simulink
Check whether you have set Number of table dimesions to 1, since your data is one-dimensional

4 years ago | 0

Answered
how to use this :https://fr.mathworks.com/help/ident/examples/time-series-prediction-and-forecasting-for-prognosis.html ?
numel function is used to find number of elements in an array. floor function is used to round the number to the nearest integer...

4 years ago | 1

| accepted

Answered
Can anyone help me in this please, I try to resize the image. I'm beginner
You may use imresize function

4 years ago | 0

Answered
Vectors must be the same length
Check whether n(1:20)+1 and Ak_t have same number of elements.

4 years ago | 0

Answered
Solving an Incomplete Matrix such that A*transpose(A) = eye(n)
You may add the below line s = solve(A,[a,b,c]); The solution can be obtained as aValue = s.a; bValue = s.b; cValue = s.c; ...

4 years ago | 0

Answered
Create folders in matlab and move into files via loop
You may try the following for i =1:4 currentFolder = sprintf('Folder%d',i); mkdir(currentFolder) cd(currentFolder) fileID =...

4 years ago | 1

Answered
Run Matlab FUNCTION at the end of Simulink simulation
You may use StopFcn callback in your model. Refer the following link for Model callbacks. Expand Model Simulation Callback Param...

4 years ago | 0

| accepted

Answered
finding repeated values of two columns data?
This answer may help https://in.mathworks.com/matlabcentral/answers/128818-find-the-repetition-of-matrix-rows However, they c...

4 years ago | 0

Answered
Function to scale image
How did you call the function? I assume you didn't pass input arguments It must be called with input arguments, like [scaledim...

4 years ago | 0

| accepted

Answered
How to linearize a set of non-linear differential equations in the State-Space form?
Following answer may help https://in.mathworks.com/matlabcentral/answers/393474-is-there-any-possibility-to-linearize-nonlinear...

4 years ago | 0

Answered
intersection fuction between two matrix
You may refer the following answer https://in.mathworks.com/matlabcentral/answers/180094-finding-the-elements-in-two-matrices-w...

4 years ago | 0

Answered
How do I interpolate a set of data?
I assume importlowesoftssh is user-defined function. So, I cannot run the code at my end. However, from error, I think you need ...

4 years ago | 0

Answered
Can matlab save a structure to an excel file so that each individual field is saved to one excel sheet?
You may use the following code % Let the name of structure be s f = fields(s) % get the fields of the structure for i = 1:n...

4 years ago | 2

| accepted

Answered
Simulink with Modbus TCP in the Realtime Machine
As a workaround, you may use a MATLAB Function block and use modbus object inside it.

4 years ago | 0

Load more