photo

Tejas


Last seen: 4 days 前 自 2024 起处于活动状态

Followers: 0   Following: 0

统计学

  • Knowledgeable Level 2
  • 3 Month Streak
  • First Answer

查看徽章

Feeds

排序方式:

已回答
i have a binary image , in that i used roifilt2 to filter ROI , i need to calculate the black pixels in the filtered region?
Hello Priya, To determine the number of black pixels, the 'sum' function can be utilized. This function calculates the sum of ...

5 days 前 | 0

已回答
I am trying to create MIL automation script using Signal Editor facing below issue.
Hello Nikhil, To create a MIL automation script according to the specified requirements, follow these steps: Access the 'Sig...

6 days 前 | 0

已回答
Error using load when trying to open large structure .MAT file
Hello Nicholas, This issue often arises when the .MAT file is corrupted. Here are a few suggestions to resolve it: Create a ...

6 days 前 | 0

已回答
I worked on a code for caesar cypher problem it should work correctly but it does not
Hello Amany, The reason the above code produces incorrect results on certain test cases is due to the lack of wrap-around when...

7 days 前 | 0

已回答
use app designer to assign values to variables in existing ".m" script
Hello André, User inputs can be saved to a .M file by utilizing a button push callback along with file handling operations to ...

7 days 前 | 0

已回答
I have an adjacency matrix .Now I want to rewire by replacing two edges at random.I have tried please see below
Hello MKS, It seems you want to rewire an adjacency matrix by removing two random edges and adding two new ones. Here are...

7 days 前 | 0

已回答
How to reset counter using its own output counter complete signal??
Hello Pranjali, From the above question, I am assuming that you want to build a counter that automatically resets after reachi...

8 days 前 | 0

已回答
How to use plot3 function inside Matlab function block used in Simulink ?
Hello Vignesh, To use the ‘plot3’ function within a MATLAB Function block in Simulink, it must first be declared as an ‘extrin...

9 days 前 | 0

已回答
debugging from symbolic computations
Hello Pooya, The warnings that appear after running the code suggest that the functions 'tx(i,x)', 'ty(j,y)', 'rux(x)', 'ruy(y...

12 days 前 | 0

已回答
copy a dynamicprops object by value
Hello Yvan, The 'dynamicprops' class is a subclass of the 'handle' class. This means that when 'myclass' inherits from 'dynami...

12 days 前 | 0

已回答
regarding deep demosaicing fdorimage restoration
Hello Maulshree, From the question above, I assume you want to know how the output image from the ‘demosaic’ function can be u...

13 days 前 | 0

已回答
I have used nnstart neural network tools to predict NOx data using LM model. How do I export the predicted data to compare the predictions?
Hello Aman, The 'nnstart' tool does not offer an option to directly export predictions. However, it is possible to export the ...

14 days 前 | 0

已回答
Calibration and validation in ANN model
Hello Sonisa, The ‘divideParam’ function expects the ‘trainRatio’, ‘valRatio’, and ‘testRatio’ to be decimal values. Here i...

15 days 前 | 0

已回答
How to i build a structure like digitTest4DArrayData with OWN data
Hello Matthias, To convert your dataset into the same structure as the ‘digitTest4DArrayData' test dataset, use the 'imageDatas...

15 days 前 | 0

已回答
How to show a figure in the MATLAB App designer with both X and Y axis from signal in simulink real-time model?
Hello Devesh, Start by adding an 'Axes Component' in App Designer. Below this component, place a button and assign a 'ButtonPu...

15 days 前 | 0

已回答
Fill below the 3D terrain data
Hello Burak, To fill the terrain from the elevation data down to mean sea level, you can create polygons that act like vertica...

15 days 前 | 0

| 已接受

已回答
Does MatLab work on VDI
Hello Jesus, Yes, MATLAB can be used on a VDI. To install it on a VDI, follow these steps: Check that your MATLAB license al...

1 month 前 | 0

已回答
Calculate f for multiple inputs
Hello Arashdeep, The vectors ‘q’, ‘x’, and ‘y’ have dimensions of [99,1], while ‘u’ and ‘v’ have dimensions of [1,101]. Subtra...

1 month 前 | 0

已回答
NARX export to Simulink time step
Hello Sohrab, When exporting a NARX network block to Simulink, the ‘gensim’ function can be used to adjust the sample time as ...

1 month 前 | 0

已回答
How can we use the m files for Daughman Integro-differential operator given in the hyperlink below?
Hello Ridhima, I understand that the requirement is to use the collection of .M files published in File-Exchange with title “I...

1 month 前 | 0

已回答
limiting broadcast variable in a 3d block processing program
Hello Tiwwexx, To stop the broadcasting of the ‘pad_im’ array, consider making it a ’Distributed Array’. This will partition t...

1 month 前 | 0

已回答
dynamic images for temporal dithering
Hello André, To create dynamic temporal images, use the Axes UI component to plot the images. Then use 'timer' function to exe...

1 month 前 | 0

已回答
Comparison of excel sheet data and output should be excel sheet for matched and mismatched data using simulink model.
Hello Divyashree, To compare two Excel files in Simulink, create a .M script that reads the Excel files and extracts matched an...

1 month 前 | 0

已回答
callback in TreeNode Propertis
Hello Luca, Follow the example below to add a callback to a node within a Tree: Define a callback for the Tree using the ‘Se...

2 months 前 | 0

| 已接受

已回答
How to get input from a simulink model to .m file ?
Hello Prerna, The output of a 'MUX' is a vector, allowing the elements within the output signal to be indexed like any other ve...

2 months 前 | 0

已回答
Extracting string value from table - Receive error "Expression for initial value of data must evaluate to logical or supported numeric type."
Hello Rocke, Table-type data cannot be directly passed as an input to a ‘MATLAB Function Block’ in Simulink. The table needs t...

2 months 前 | 1

已回答
How to compare between simulink setting file?
Hello Dayoung, Here is a workaround to compare Simulink setting files without using the ‘visdiff’ function. It is assumed that...

2 months 前 | 0

已回答
How to use looping method to crop image dynamically (auto-cropping)?
Hello Dayangku, I am assuming you want to automate the process of resizing images to 512 x 512 pixels by adding padding if any...

2 months 前 | 0

已回答
Different Numerical results between Intel and AMD
Hello Huiyu, My understanding from the above question is, that you want to know why there is difference in numerical values wh...

2 months 前 | 0

已回答
Compute the curl of a trajectory (identify clockwise or anti-clockwise motion)
Hello Andreas, It looks like you are curious about why there is an issue when trying to use the curl function and how to corre...

4 months 前 | 0

加载更多