Answered
By using computervision toolbox I'm trying to play a video in MATLAB using this code, but only one frame is displayed on the window
You could do the following: a = vision.VideoFileReader('spur gear.avi' , 'VideoOutputDataType', 'double'); VideoPlayer = visio...

5 years ago | 0

Answered
How can I compare distance (not only between two points, but also a set of points)
As I understand it, you have 10 by 100 points represented in variables X and Y which are both 10 by 100 matrices. A given point ...

6 years ago | 0

| accepted

Answered
Simulation Domain (Region)?
I would say what you want is the meshgrid function. Have a look at the <https://uk.mathworks.com/help/matlab/ref/meshgrid.html d...

6 years ago | 0

Question


Is there a property to modify the marker size of a drawline graphics object?
I'm using the drawline function and wondering if it would be possible to modify the marker sizes? If for example we have the fol...

6 years ago | 1 answer | 0

1

answer

Answered
How to reshape a single column matrix in the following example?
If you write the following you can directly modify the CT_matrix, no need to separate it out into a column vector: ind_lte_20 =...

6 years ago | 0

| accepted

Answered
Take the sum of an array until a limit is reached determined by a vector of the same length
For a single result you could write the following to get the sum for an arbitrary track length of 10 mm, and you have the option...

6 years ago | 1

| accepted

Answered
Numbering options in a table
You could change Line 58 to the following: disp(crossSectionInfo.Resistance(str2double(result)))

6 years ago | 0

Answered
I don't get the correct output from my function
The function is correct. However, because this function outputs very large numbers depending on your range (in terms of absolut...

6 years ago | 0

| accepted

Question


How could I make a callback that updates when the user moves an roi?
I'm making an app which loads and displays the same image side by side in app.UIAxes and app.UIAxes2. I have a rectangle roi obj...

6 years ago | 1 answer | 0

1

answer

Answered
To determine the number of distinct pairs of value(s) in each column of matrix.
You could do the following. First find rows where there is only one other element equal to the element in the first column idx ...

6 years ago | 0

| accepted

Answered
How to print contents of nested cell array to uitable?
I think the best thing to do is make another cell array, B, as follows: nRows = max(cellfun(@numel,A)) nCols = numel(A) B = c...

6 years ago | 0

| accepted

Answered
clustering nearest 5 elements of a data
You could do the following which is to find the 5 minimum absolute differences for each element in core. [~,idx] = mink(abs(dat...

6 years ago | 1

| accepted

Answered
Merge all rows in a cell into one row
Similar to numeric arrays writting NewC2LatLon(:) returns all the all elements of the array in a single column. However, I think...

6 years ago | 1

| accepted

Answered
find mean of 2d slice in 3d segmented volume
Ok I think I know what you want. Looking at the documentation for roipoly, I assume you got a binary image representing the regi...

6 years ago | 0

Answered
Finding the closest point on a line to another point
Solving for the discrete points is actually a lot easier. Using your data as follows: line.x = [1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5,...

6 years ago | 0

| accepted

Answered
summing elements of an array until a value appears
Say your array is called data: q=2; data = [1 2 3; 1 3 2; 2 1 3; 1 0 3; 1 2 2]; % Includes rows without any values = q, and re...

6 years ago | 0

Answered
Matlab corresponding values between matrices?
This will show values of B that exist in A and which are also less than N. result = B(ismember(B,A) & B<N) If you need find ...

6 years ago | 0

Answered
Unexpected output form intersect (polyxpoly)
When you're using intersect to do what you have described you need to ensure you have inputs of either two polyshapes, a polyvec...

6 years ago | 1

Answered
How to write a loop for this case?
I was also taking the route of putting them into a structure with a fieldname for each month. months = {'Jan','Feb','Mar','Apr'...

6 years ago | 1

Answered
Image Processing Edge Detection
You could try the following modification. The main thing I did was use bwareafilt to filter out all but the largest area, then f...

6 years ago | 0

Answered
The output matrix values are either 0 or 1 but i want it between [0,1]
When you load in the image the data type is uint8 - unsigned 8 bit integers. So you can't get values between 0 and 1 unless you ...

6 years ago | 0

| accepted

Answered
dot product between system of vectors
Based on your description you can do the following, transpose the Y and then it's a straight forward case of matrix multiplicati...

6 years ago | 1

Answered
Drawing Polygon shapes with data
You can draw the rectangles from your struct as follows: k = size(out,2); figure(), hold on for i = 1:k a = size(out(i)....

6 years ago | 0

| accepted

Answered
How do i check the frequency of an element in a multi level cell array?
The following loads and concatenates all elements of your cell array, including the 1 x 2 string in result2{1,1}(7), into a sing...

6 years ago | 0

| accepted

Answered
incorrect input to ezplot function
ezplot requires a function handle as an input whereas you are inputting a vector. Seeing as you have the results as a vector I t...

6 years ago | 1

Answered
How can I concatenate two vectors?
How can I 'join vector C and signal to get a matrix? Depends on whether signal is a column vector or row vector If it's a co...

6 years ago | 0

Answered
How to do operations on nested cell array?
This should hopefully work but i ament able to test it myself right now as I'm away from my computer. The idea is to pass onecel...

6 years ago | 0

Answered
How do i plot maximum values
You weren't actually calling the function. Secondly, the function had no input argument for threshold so I've included that. I a...

6 years ago | 0

| accepted

Answered
how can i add column in matrix?
Depends what you want in that column but you could for example add a column of zeros as follows: A = [A zeros(size(A,1),1)]

6 years ago | 0

| accepted

Question


How to run checks on all rows of structure?
I want to check all the rows in the field of a structure and find out which rows are not empty. Can I get an index without using...

6 years ago | 1 answer | 0

1

answer

Load more