Respondida
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...

casi 4 años hace | 0

Respondida
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...

casi 4 años hace | 0

Respondida
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...

casi 4 años hace | 0

Respondida
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...

casi 4 años hace | 0

| aceptada

Respondida
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-...

casi 4 años hace | 0

Respondida
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 ...

casi 4 años hace | 2

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

casi 4 años hace | 0

Respondida
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...

casi 4 años hace | 1

| aceptada

Respondida
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...

casi 4 años hace | 1

| aceptada

Respondida
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,...

casi 4 años hace | 0

| aceptada

Respondida
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...

casi 4 años hace | 1

| aceptada

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

casi 4 años hace | 0

Respondida
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. ...

casi 4 años hace | 0

Respondida
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...

casi 4 años hace | 0

Respondida
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-...

casi 4 años hace | 0

Respondida
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...

casi 4 años hace | 0

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

casi 4 años hace | 0

Respondida
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...

casi 4 años hace | 1

| aceptada

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

casi 4 años hace | 0

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

casi 4 años hace | 0

Respondida
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; ...

casi 4 años hace | 0

Respondida
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 =...

casi 4 años hace | 1

Respondida
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...

casi 4 años hace | 0

| aceptada

Respondida
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...

casi 4 años hace | 0

Respondida
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...

casi 4 años hace | 0

| aceptada

Respondida
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...

casi 4 años hace | 0

Respondida
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...

casi 4 años hace | 0

Respondida
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 ...

casi 4 años hace | 0

Respondida
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...

casi 4 años hace | 2

| aceptada

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

casi 4 años hace | 0

Cargar más