photo

Vidhi Agarwal


Last seen: 6 days ago Active since 2023

Followers: 0   Following: 0

Statistics

  • Knowledgeable Level 1
  • First Answer

View badges

Feeds

View by

Answered
unable to connect the C2000 (tms320f28335) with simulink?
Hi Arijeet, I understand you encountered an error stating that the file "thirdpartytools_win64.xml” was not found. The error ...

5 days ago | 1

| accepted

Answered
Remove Blocks of Matrix from a Matrix
Hi Amehri, The following approach demonstrates an optimized version of the function: By Incorporating ‘vectorization’ and ...

6 days ago | 0

Answered
How can I solve the error 'Too many output arguments' when creating a histogram in Matllab Appdesigner?
Hi Kaitlynn, I understand you've encountered a challenge with an error stating "Too many output arguments" within your MATLAB ...

6 days ago | 0

Answered
Use Image Segmenter on *.fig figures
Hi, I understand you are facing the issue of loss of information while storing your figures in ‘.png’. To solve this issue, ...

7 days ago | 0

Answered
DDS通信信号标定和观测
Hi hengyang, I understand you have a query regarding a way to implementing signal calibration and observation after automatic ...

1 month ago | 0

Answered
A way to generate and track a random trajectory/pathway in 3d space
Hi JingChong Ning, I understand your query is regarding a way to model a flight path and the tracking of this flight path in Si...

1 month ago | 0

Answered
how to smooth the edge of a binary image
Hi NaviD, I understand your query is regarding a method to smooth out the edges of image. Below is an approach using MATLAB t...

1 month ago | 0

Answered
How do i get the compressed sparse row for the following matrix ?
Hi De Silva, I understand you have a query regarding creating a CSR for a given matrix. Compressed Sparse Row (CSR) is a way ...

2 months ago | 0

Answered
meaning of statistical results in signal integrity viewer
Hi jaeyoon, I understand you have queries regarding the concept of signal integrity viewer. In signal testing, "Statistical ...

2 months ago | 0

Answered
stat eye height 의미가 무엇인가요
Hi jaeyoon, I understand you have queries regarding the concept of signal integrity viewer. In signal testing, "Statistical ...

2 months ago | 0

Answered
How to apply a step input and plot it on Ansys mass stiffness damping ratio Matrix file (kdense.matrix)??
Hi, I understand you have query regarding giving and plotting the step response for your Ansys mass stiffness damping ratio Ma...

2 months ago | 0

Answered
Does the Data Acquisition Toolbox™ allow users to read NI Shared Variables?
Hi Ron, I acknowledge your inquiry concerning the compatibility of the Data Acquisition Toolbox with NI shared variables. Th...

2 months ago | 0

Answered
Different results between Step and Stepinfo
Hi Gerard, I understand you encountering discrepancy between the values of percentage overshoot in step-response graph and ste...

2 months ago | 0

Answered
Matlab 2015b update setup failed
Hi Yannis, I understand you encountering an issue while trying to update to R2015b Update_1. This issue can be related to an...

2 months ago | 0

Answered
Simulink 2021a not working
Hi Swapnil, It appears that you are encountering difficulties when attempting to open Simulink models created in MATLAB R2019 ...

2 months ago | 0

Answered
Profile viewer interface question regarding different runtimes quoted
Hi Otis, I understand that your query is regarding the difference in “Lines where the most time was spent” and “Children (call...

2 months ago | 0

Answered
Matlab cannot open .m file
Hi Wei, I understand that your MATLAB is experiencing loading issues, and the problem persists despite attempts to restart the...

2 months ago | 0

Answered
How to pass a writable array to a python function?
Hi Søren, It is acknowledged that transferring an array from the MATLAB workspace to a Python script necessitates copying the ...

3 months ago | 0

Answered
Why is the signals not working to convert from RGB to HSV using Color Space Conversion Block in Simulink?
Hi Jaylene, I understand that you are getting an error regarding supported data type by Color Space block for R’ G’ B’ to inte...

3 months ago | 0

Answered
comparison between gaussian elimination and cholesky decomposition method
The below code is comparison between Gaussian Elimination method and cholesky Decomposition method You Can learn this methods f...

11 months ago | 0

Answered
How do I perform state linear interpolation?
To perform state linear interpolation in MATLAB, you can use the interp1 function. This function performs linear interpolation b...

11 months ago | 0

Answered
using Gauss Jacobi method to solve a system of equations
To solve Ax = B using Gauss-Jacobi method, we need to first transform the system of equations into an iterative form, as follows...

11 months ago | 0

Answered
How can I solve a large matrix (N by M) of non linear equations that contains (N*M) unknowns?
The idea of the Quasi-Newton method is to update the approximation of the Jacobian matrix using the information from the functio...

11 months ago | 1

Answered
bisection method.
Please find the attched Code for the following question % Define the function f(x) f = @(x) x^3 - 1.6*x^2 - 2.4*x + 0.3; % De...

11 months ago | 0

Answered
Write a MATLAB function that takes a square matrix a of size n x n. The function computes products of all elements in each row. It then adds all the products together and returns the sum as an output.
Please find the Code below: function rowprod_sum = rowProductSum(a) [row, col] = size(a); sum = 0; for i = 1:row pro = ...

11 months ago | 0