Devineni Aslesha
Followers: 0 Following: 0
Estadística
0 Preguntas
110 Respuestas
0 Problemas
55 Soluciones
CLASIFICACIÓN
334
of 295.467
REPUTACIÓN
244
CONTRIBUCIONES
0 Preguntas
110 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
28
CLASIFICACIÓN
of 20.234
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
9.410
of 153.912
CONTRIBUCIONES
0 Problemas
55 Soluciones
PUNTUACIÓN
560
NÚMERO DE INSIGNIAS
1
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
How can I display and run a Simulink VR World from MATLAB?
Hi William, Here is a similar question that might help you to run a simulink model from the App Designer https://www.mathworks...
alrededor de 4 años hace | 0
Why MATLAB is crashing so much on Mac IOS Catalina?
Hi Alexandre, Hopefully these links might help you. https://www.mathworks.com/matlabcentral/answers/484955-matlab-2019b-not-wo...
alrededor de 4 años hace | 0
Develop an ANN model getting concatenation erro help
Assuming that the error 'Dimensions of arrays being concatenated are not consistent' is in the line inputs = [M,D,H] or test =[M...
alrededor de 4 años hace | 0
| aceptada
writing matched filter to determine binary signal
Hi Jacob, Assuming that you do not want to use the inbuilt command for matched filter, here is the way to create signals, find ...
alrededor de 4 años hace | 0
| aceptada
how to resolve this integral, i have the function in s and i want to integrate this function between t and infinity and get an explicit solution, can someone help me
In the given code, the way the int is used caculates the integral of fun with respect to the variable s from to to Inf. However,...
alrededor de 4 años hace | 1
| aceptada
How can I save my camera parameters in a .mat or text file; for example exposure time and ISO value?
Hi Malu, Here is a similar question on how to save cameraParameters to a .mat or .txt file using save. https://www.mathworks.c...
alrededor de 4 años hace | 0
| aceptada
How to create datastore from cell array containing a lot of data?
Hi Kimberly, Please use the below code to create datastore from cell array freqNorm. tA = tall(freqNorm); write('C:\Users\Kim...
alrededor de 4 años hace | 1
| aceptada
Unable to perform assignment because the indices on the left side are not compatible with the size of the right side.
The reason for showing 1x1 sym for theta1 is that they are declared as symbolic variables using syms theta1. However, 0x1 sym is...
más de 4 años hace | 0
Eye Diagram different values in measurement for histogram and line plot
Hi Muhammad, In the attached simulink model, the Stop Time is 100 sec. So, when you are trying to change the Display Mode to 2D...
más de 4 años hace | 0
Is there a way to display a pdeplot3d in a subplot?
Hi Christian_T You can display a pdeplot3d in a subplot like other 3d plots. I am using example code available in pdeplot3d doc...
más de 4 años hace | 0
Error using sym/subsindex
Hi Susmit In the given code, the error is due to the presence of x(j+1) and y(j+1) that belongs to Class uint32. However, the E...
más de 4 años hace | 0
How to measure the amplitude and wavelength of the following wave I got after edge detection. Also, I want just one of upper or lower curve as they both have same parameters.
Here is the link for a similar question and the code to get the x and y values for the wave after edge detection is available in...
más de 4 años hace | 0
| aceptada
Integrate new rows inside matrix and repeating them
Here is the code to integrate two lines inside matrix and repeated frequently before each rows. A = [ "G"+1 "X"+8 "Y"+118 ...
más de 4 años hace | 0
| aceptada
How to Code This Using filter?
Assuming that 'a' is input data and 'x' is the output data, you can use the filter function as shown below a = 1:5; num = 1; ...
más de 4 años hace | 0
| aceptada
Single sided spectrum through FFT algorithm
Hi Aishwarya, Here is the explanation for the lines highlighted in bold. 1. f = fs/2*linspace(0,1,NFFT/2+1); https://www.mat...
más de 4 años hace | 1
| aceptada
How can I equate coefficients of the like powers from rhs and lhs in an equation to obtain a system of ODEs?
Hi Silvia, You can use the coeffs function to equate like powers of t and obtain the corresponding ODEs. eqn = lhs(EQ12)-rhs(E...
más de 4 años hace | 0
Finding roots of a matrix equation
Refer the roots documentation from the given link https://www.mathworks.com/help/matlab/ref/roots.html
más de 4 años hace | 0
transient analysis in power system
You can use the File Exchange links, link1 link2 to do the transient analysis of a power system. You can also use Simscape Elect...
más de 4 años hace | 0
| aceptada
How to right use awgn after audioread?
Hi Nik, Here, the snr value increases by 1 dB for every for loop iteration. Since, some userdefined functions are used before s...
más de 4 años hace | 0
Mathworks SDR e-book failure: "The Fixed-Point Designer must be available to construct an MFILT.CICINTERP filter."
Hi David, Fixed-Point Designer provides data types and tools for optimizing and implementing fixed-point and floating-point alg...
más de 4 años hace | 0
Change keyboard shortcuts for switching between editor and command window
Hi Nirab For the 2020b update, the keyboard shortcuts are not configurable. One more update has been made to the existing enhan...
más de 4 años hace | 0
designing BPFs using butter function
As the frequency response of the Butterworth filter is maximally flat (no ripples), you do not have an option to specify the pas...
más de 4 años hace | 0
| aceptada
Discrepancy help article and functionality of "display" block in Dashboard Blockset
Hi Jonathan, The Display block from the Dashboard library supports vector, 2-D matrix, and complex signals. This feature is av...
más de 4 años hace | 1
| aceptada
Error with Push Button Callback (including check boxes)
Hi Chirag, In the given code, the reason for the error "Too many input arguments" is that the getdatafromTRA0104 function is de...
más de 4 años hace | 1
| aceptada
Using the solve function for a more complex variable
Hi Noel, Use the solve function to find the solution for the above equations as shown below. syms x y z s1 s2 c1 c2 eqn1 = x ...
más de 4 años hace | 1
| aceptada
.m Script into GUI App Help
Hi Ann Type guide in MATLAB command window. Open Blank GUI(default). Drag and drop the axes and push button in GUI figure wind...
más de 4 años hace | 0
How to record a sound using App Designer in real-time
Hi Mike Use the audiorecorder object to record audio data from an input device such as microphone in App designer. Refer the ...
más de 4 años hace | 1
| aceptada
plot() doesn't work in .m file?
Assuming that you have included the code for reading table into M and storing it in x and y before using plot(x,y), the error mi...
más de 4 años hace | 1
| aceptada
Assigning values to variables after using isolate?
In your code, check with the symsum function as it do not return the sum of the series((-D*n^2*pi^2*t)/(r^2))) with respect to t...
más de 4 años hace | 0
Calculating double integral of two variable
Hi Ismael, To calculate the double integral of a two variable function, integral2 accepts only numeric variables. So, the entir...
más de 4 años hace | 0