BhaTTa
Followers: 0 Following: 0
Feeds
已回答
can anyone tell me how to implement boundary detection algorithm?
Hey @sana saleeme, I assume that you want to trace the boundary of an object. Please refer to below article: https://www.mathwo...
can anyone tell me how to implement boundary detection algorithm?
Hey @sana saleeme, I assume that you want to trace the boundary of an object. Please refer to below article: https://www.mathwo...
1 day 前 | 0
已回答
convert an array to time series and input to simulink
Hey @Mohammad Ali Khademi, I assuume that you want to convert your array of time and digital data into a time series format suit...
convert an array to time series and input to simulink
Hey @Mohammad Ali Khademi, I assuume that you want to convert your array of time and digital data into a time series format suit...
1 day 前 | 0
已回答
Ultrametric distance matrix from distance matrix
Refer to this github repo: https://github.com/ndag/ultrametrics/blob/master/README.md
Ultrametric distance matrix from distance matrix
Refer to this github repo: https://github.com/ndag/ultrametrics/blob/master/README.md
1 day 前 | 0
已回答
extract date from cell of mixed types
Hey @Utsav, When you import data from Excel using xlsread in MATLAB, and the date information is stored as text, you need to con...
extract date from cell of mixed types
Hey @Utsav, When you import data from Excel using xlsread in MATLAB, and the date information is stored as text, you need to con...
1 day 前 | 0
已回答
how can i multiply blocks of a block matrix by a non block-matrix, block to elements?
Hey @xosro, I assume that you want to multiply each 2x2 block of A by a corresponding element from B. The element B(i, j) should...
how can i multiply blocks of a block matrix by a non block-matrix, block to elements?
Hey @xosro, I assume that you want to multiply each 2x2 block of A by a corresponding element from B. The element B(i, j) should...
2 days 前 | 0
已回答
GUI for plotting specific rows-columns in a 3D cell matrix
Hey @Ahmad Khaled, you can achieve it through MATLAB App Designer, where you can create a custom GUI using the App Designer to l...
GUI for plotting specific rows-columns in a 3D cell matrix
Hey @Ahmad Khaled, you can achieve it through MATLAB App Designer, where you can create a custom GUI using the App Designer to l...
2 days 前 | 0
已回答
how to draw a graph
Hey @nkumar, I understand that you want to draw a graph in Simulink, Please follow the below steps in order to achieve it: ...
how to draw a graph
Hey @nkumar, I understand that you want to draw a graph in Simulink, Please follow the below steps in order to achieve it: ...
2 days 前 | 0
已回答
How to create an adjacency matrix with a hexagonal structure
Hey @ally, first you have to number each of the hexagonal nodes, then see which all nodes are directly connected to the given nu...
How to create an adjacency matrix with a hexagonal structure
Hey @ally, first you have to number each of the hexagonal nodes, then see which all nodes are directly connected to the given nu...
2 days 前 | 0
已回答
how can I draw network in Matlab from a specific nodes matrix
Hey @Ahmed, To draw a network in MATLAB using a list of source and target nodes, you can use the graph function, which is design...
how can I draw network in Matlab from a specific nodes matrix
Hey @Ahmed, To draw a network in MATLAB using a list of source and target nodes, you can use the graph function, which is design...
2 days 前 | 0
已回答
How can I activate keyboard shortcuts (e.g. ctrl-o) from the command window in R2013?
Hey @Maestro, Type "preferences" in the command window. Then under Keyboard -> Shortcuts you can change the keyboard shortcuts....
How can I activate keyboard shortcuts (e.g. ctrl-o) from the command window in R2013?
Hey @Maestro, Type "preferences" in the command window. Then under Keyboard -> Shortcuts you can change the keyboard shortcuts....
2 days 前 | 0
已回答
What can i do to insert the script on top the command window?
Hey @Antonino Alesci, If your trying to run the script and display the output of the script at top of your command window then y...
What can i do to insert the script on top the command window?
Hey @Antonino Alesci, If your trying to run the script and display the output of the script at top of your command window then y...
2 days 前 | 0
已回答
if i have matrix and i want to generate a random matrix with specific rule ?
Hey @Firas Al-Kharabsheh, I understand that you want to overlap "Full_Matrix" on matrix "X" , you can achieve it by looping thro...
if i have matrix and i want to generate a random matrix with specific rule ?
Hey @Firas Al-Kharabsheh, I understand that you want to overlap "Full_Matrix" on matrix "X" , you can achieve it by looping thro...
3 days 前 | 0
已回答
Regarding buffer and stack in simulink
Hey @ana, you can achieve the above requirement by implementing a loop that processes your input matrix in chunks of 40 samples....
Regarding buffer and stack in simulink
Hey @ana, you can achieve the above requirement by implementing a loop that processes your input matrix in chunks of 40 samples....
3 days 前 | 0
已回答
Confusion with triangles, area , perimeter
Hey @Dylan, I assume that you require a MATLAB script that calculates both the perimeter and the area of a triangle given the co...
Confusion with triangles, area , perimeter
Hey @Dylan, I assume that you require a MATLAB script that calculates both the perimeter and the area of a triangle given the co...
27 days 前 | 0
已回答
gui setting a static text according to an edit text value?
Hey @naim, you can achieve the above requirement in MATLAB App Designer by adding a callback function to the edit text field tha...
gui setting a static text according to an edit text value?
Hey @naim, you can achieve the above requirement in MATLAB App Designer by adding a callback function to the edit text field tha...
27 days 前 | 0
已回答
store listbox selections in array after pushbutton is pressed
Hey @miner, you can achieve the above requirement by adding a callback logic to pushbutton. Please refer to this documentation....
store listbox selections in array after pushbutton is pressed
Hey @miner, you can achieve the above requirement by adding a callback logic to pushbutton. Please refer to this documentation....
27 days 前 | 0
已回答
Resample timeseries with maximum values
Please refer to 'retime' function to achieve above requirement.
Resample timeseries with maximum values
Please refer to 'retime' function to achieve above requirement.
27 days 前 | 0
已回答
binary convertion data simulink
Hey @Danilo NASCIMENTO, you can convert binary data into decimal format in Simulink by using a combination of blocks that interp...
binary convertion data simulink
Hey @Danilo NASCIMENTO, you can convert binary data into decimal format in Simulink by using a combination of blocks that interp...
28 days 前 | 0
已回答
how to convert a binary string of length more than 52 bits to decimal number.
Hey @madhavee latha, to convert a binary string of bits into a decimal number in MATLAB, you can use the bin2dec function. Howev...
how to convert a binary string of length more than 52 bits to decimal number.
Hey @madhavee latha, to convert a binary string of bits into a decimal number in MATLAB, you can use the bin2dec function. Howev...
28 days 前 | 0
已回答
Evaluating a function with respect to 2 variables
Hey @Larry McNamara, I assume that you want to evaluate a function for "N" odd iterations from 1 to 5 and 1 to 100 with respect ...
Evaluating a function with respect to 2 variables
Hey @Larry McNamara, I assume that you want to evaluate a function for "N" odd iterations from 1 to 5 and 1 to 100 with respect ...
28 days 前 | 0
已回答
how to read mp4 video in matlab version R2009a
Hey @Nagaraju chalicheemala, Please refer to the below documentation on VideoReader (it was introduced in 2010b release): https...
how to read mp4 video in matlab version R2009a
Hey @Nagaraju chalicheemala, Please refer to the below documentation on VideoReader (it was introduced in 2010b release): https...
29 days 前 | 0
已回答
Reading structured file with multiple files
Hey @Kundan, I assume that the structure file is .mat file and it contains various models, you can load '.mat' file and then wor...
Reading structured file with multiple files
Hey @Kundan, I assume that the structure file is .mat file and it contains various models, you can load '.mat' file and then wor...
29 days 前 | 0
已回答
Read a struct file from ATP
Hey @Rodrigo Trigona, I assume that you want to run ATP from within Matlab, please refer to this answer.
Read a struct file from ATP
Hey @Rodrigo Trigona, I assume that you want to run ATP from within Matlab, please refer to this answer.
29 days 前 | 0
已回答
How do I find a pattern in an array
Hey @N/A, I assume that each time you compare 3 concecutive numbers from 'ritme' and based on the pattern it matches play that p...
How do I find a pattern in an array
Hey @N/A, I assume that each time you compare 3 concecutive numbers from 'ritme' and based on the pattern it matches play that p...
29 days 前 | 0
已回答
Errors when imports .xml file that exported from inventor
Please refer to this answer.
Errors when imports .xml file that exported from inventor
Please refer to this answer.
1 month 前 | 0
已回答
Compare two data in a column of matrix
Hey @Kim Lopez, you can use logical indexing to compare the values and assign them, below i have provided the code implementing ...
Compare two data in a column of matrix
Hey @Kim Lopez, you can use logical indexing to compare the values and assign them, below i have provided the code implementing ...
1 month 前 | 0
已回答
multiple arrays to one text file
Please refer to the below MATLAB Answer : https://www.mathworks.com/matlabcentral/answers/364579
multiple arrays to one text file
Please refer to the below MATLAB Answer : https://www.mathworks.com/matlabcentral/answers/364579
1 month 前 | 0
已回答
asking about c++(array)--(need some help).how can i solve the problem?
Hey @ghyd ri, I have used C++ stl for the implementation, refer to the code below: #include <iostream> #include <vector> #inc...
asking about c++(array)--(need some help).how can i solve the problem?
Hey @ghyd ri, I have used C++ stl for the implementation, refer to the code below: #include <iostream> #include <vector> #inc...
1 month 前 | 0