Community Profile

photo

Jacob Mathew


Last seen: 5일 전 2023년부터 활동

Followers: 0   Following: 0

통계

  • Knowledgeable Level 2
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
What are the raw data needed to use the software? How does the interface works?
I assume you are talking about importing data into MATLAB from an external source. To achieve this, you can use the Import Data ...

25일 전 | 0

답변 있음
How to compute Intraclass Correlation Coefficient (ICC ) between two adjacency (functional connectivity) matrices?
To compute the ICC between 2 matrices, you can utilise the ICC Add On from the “Add On Explorer” in MATLAB. You can find it in t...

25일 전 | 0

답변 있음
Clean way of integrating argument-handling with old code (struct vs. key-val pair with "arguments" keyword)
Going through your query, it is difficult to reproduce the error without reference to the code that you are using in your new ap...

27일 전 | 0

| 수락됨

답변 있음
App Designer charting issue with data not linking
With the limited context provided, a workaround could be to identify what datatype the variables are. Datatypes like array or ce...

대략 2개월 전 | 0

답변 있음
Git commit changes all text files every PC change
After reading through your query, I understand that you are facing difficulty with the end of line character that varies between...

2개월 전 | 0

답변 있음
Webcam with App Designer
I was able to replicate the error that you are facing and as I understand it is because of using P-code files in the project. ...

2개월 전 | 0

답변 있음
Upper part of MATLAB App not visible
Reading through your query, I understand that you have difficulty in some of the interactive properties of your MATLAB App. Whil...

2개월 전 | 0

답변 있음
I've to draw the status of a traffic ligthers, as in the figure, i've to plot a red line if the light is red or a green one if it is green.
Going through the question, I understand that you want to plot a line that alternates between red and green corresponding to the...

2개월 전 | 0

답변 있음
Add new line in .ini file
I was able to reproduce the difficulty you were facing using the same INI Add on in MATLAB R2021a. However, even after multiple ...

2개월 전 | 0

답변 있음
How to assign different values to different variables at once using deal() function?
Hi Jagadeesh, The deal function is used to distribute a single input into multiple outputs or multiple inputs into multiple out...

10개월 전 | 2

| 수락됨

답변 있음
Is there any easy way to handle difference equation in MATLAB ?
Hi Ram, Consider looking into the freqz function. An example code that I was able to create is as follows: % Defining the coef...

10개월 전 | 0

답변 있음
create the output folder based on the excel value
Hi PA, You can create a folder using the mkdir function: folder_name = "folder"; mkdir(folder_name); Now all that is needed ...

10개월 전 | 0

답변 있음
multiplying with a with a scaler in a vector element at regular interval
Hi Chaudhary, As mentioned by Aman, you can index into the vector and multiply by a scalar: indices = [2 4 6 8 10]; vector(in...

10개월 전 | 0

| 수락됨

답변 있음
Access varying variable names in loop
Hi Oskar, I can point you towards a simple example and hope you can build from it. Conside the code below: x = 'hello'; % Dyn...

10개월 전 | 0

답변 있음
What is the formula for the peak envelope created in MatLab?
Hi Minoru, This is the link to the documentation of evelope function: https://in.mathworks.com/help/signal/ref/envelope.html U...

10개월 전 | 0

답변 있음
How to reduce run time of for loop
Hi dharmin, Looking at the code in the for loop, you can try and precalculate the values of sind(L(i)) and cosd(L(i)) which wil...

10개월 전 | 0

| 수락됨

답변 있음
how to fix the graph in app designer
EDIT: To make the graph static, we can use the following code: disableDefaultInteractivity(app.UIAxes) Hi piero, I unders...

10개월 전 | 1

| 수락됨

답변 있음
Time limit on .exe file execution
Hi Peter, Check out how to use Eventually (Poll for value to asynchronously satisfy constraint - MATLAB - MathWorks India) Thi...

10개월 전 | 0

답변 있음
I have a matrix. I want to count number of only those zeros which are lying between 2 sets of consecutive nonzero values on each side. How to do? Desired result given below
Hi Payel, If I understood the query correctly, the question is to find the longest number of zeros per row that are enclosed by...

10개월 전 | 0