photo

Jason


Last seen: Today Actif depuis 2011

Followers: 0   Following: 0

Message

Statistiques

MATLAB Answers

497 Questions
62 Réponses

RANG
1 553
of 300 853

RÉPUTATION
45

CONTRIBUTIONS
497 Questions
62 Réponses

ACCEPTATION DE VOS RÉPONSES
70.02%

VOTES REÇUS
31

RANG
 of 21 094

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG

of 171 319

CONTRIBUTIONS
0 Problèmes
0 Solutions

SCORE
0

NOMBRE DE BADGES
0

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Knowledgeable Level 1
  • 3 Month Streak
  • Thankful Level 5
  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
Endwith pattern using editfield
Ive answered it myself. Use this in the editfield box '0001 0016 0032 0048' then do this: s=app.PatternEditField.Value ...

4 jours il y a | 0

| A accepté

Question


Endwith pattern using editfield
Hello. I am wanting to load images which end with the following sequence numbers as shown in pat. pat=["0001","0016",...

4 jours il y a | 1 réponse | 0

1

réponse

Question


Modifying sequential filenames with padded numbers
Hello, I am trying to create some file names to save a setr of images and have so far done this: >> filenames = "clock_" + stri...

5 jours il y a | 1 réponse | 0

1

réponse

Question


Add a datestr to duration data to get in datestr format
Hi, I have a graph where Im plotting on the x-axis time by using tic then in a loop making measurements 'Y' and performing ten...

25 jours il y a | 2 réponses | 0

2

réponses

Question


Fitting to exp plus a constant
Hello, I am trying to fit some data to an exponential + constant function and have this approach that I came across: % code i...

26 jours il y a | 1 réponse | 0

1

réponse

Question


Passing Data from child app back to parent app.
Hello. I am trying to pass data from from a child app that is called from within my main app. My main app is H_TestSoftware.m...

26 jours il y a | 1 réponse | 0

1

réponse

Question


Copy Legend from UIAxes to another UIAxes
Hello,i want to copy a plot on a uiaxes to another uiaxes and can do using the following - but I can't get the legend to copy ac...

environ un mois il y a | 1 réponse | 0

1

réponse

Question


Creating a polynomial fit expression using just the order number
Hello. Im performing a fit to data using e.g a 3rd order polynomial and the expresion below. For cases when i want e.g a 4th or ...

environ 2 mois il y a | 1 réponse | 0

1

réponse

Question


Creating an event for "DrawRectangle" such as right click on mouse
Hello, i am drawing 2 rectangles on an image ax=app.UIAxes; % Axes that image is on numROIs = 2; roiPos = zero...

environ 2 mois il y a | 1 réponse | 0

0

réponse

Question


Imtile resolution changes with figure height
Hello, Im using imtile to create a montage from an array of images out=imtile(IMarray,'GridSize',[r c]); I display this on a ...

environ 2 mois il y a | 1 réponse | 0

1

réponse

Réponse apportée
Saving a grid of lines to be recalled using findobj and assigning to an app property
Maybe I should back away from graphic object handles and just use XLine and Yline to create my grid and just save the vector val...

3 mois il y a | 0

Question


Saving a grid of lines to be recalled using findobj and assigning to an app property
Hi, I have an image on uiaxes that I often draw a grid on and each region I perform some kind of analysis. For example in the pi...

3 mois il y a | 3 réponses | 0

3

réponses

Question


Group multiple lines to one "object" and be able to "toggle" on or off
Hi, I have this functioj that draws a grid on an image function drawGrid(RowSize,ColSize,IM,ax) % Rowsize=512 % C...

3 mois il y a | 1 réponse | 0

1

réponse

Réponse apportée
Setting the UserData property of a plot with max and min values
Think I have the answer, this works p.UserData % See current value p.UserData=[mx,mn] % Set mx &...

4 mois il y a | 0

| A accepté

Question


Setting the UserData property of a plot with max and min values
Hello, I am wanting to normalise a plot (between 0 and 1) with the option of undoing it. This is my code to perform the norma...

4 mois il y a | 2 réponses | 0

2

réponses

Question


Extracting spot coordinates from an given line in an image for an almost regular hex pattern of spots but when there is a slight tilt on Y coordinate values.
Hello, I have greyscale image that I am trying to get the positons of the centroids within a given row (i.e the red line below) ...

6 mois il y a | 1 réponse | 0

1

réponse

Question


Create an extra row in a table that show the means of all columns (but without any extra headings)
Hello, I have a table that I have created and display it in text area This is my code: params = ["ROI_L";"ROI_C";"RO...

6 mois il y a | 1 réponse | 0

1

réponse

Question


Problem with fit Model with odd order polynomial
Hi, I have the data as below. Its fits OK'ish to a 3rd order (odd polynomial), but then becomes terrible when trying a 5th orde...

6 mois il y a | 2 réponses | 0

2

réponses

Réponse apportée
Looping thru lists containing ROI's and Axes, then creating a table - rather than using the same code sequentially
Seems like this works IMlist={ROI1,ROI2,ROI3}; AXlist={ax1,ax2,ax3}; FWHMX=[]; FWHMY=[]; FWHM2D=[]; CenInt=[]; ...

7 mois il y a | 0

| A accepté

Question


Looping thru lists containing ROI's and Axes, then creating a table - rather than using the same code sequentially
Hello, I have 3 ROI (images), ROI1, ROI2 & ROI3 that are children of their respective uiaxes (ax1,ax2,ax3) Im interested in c...

7 mois il y a | 1 réponse | 0

1

réponse

Question


Indexing vectors with a zero and creating a "predicted" vector knowing what the diff should be
I have some measured values as below (that should be multiples of some fixed value) xmeasured = -52.9734 -39.7061 -26.4657 ...

7 mois il y a | 3 réponses | 0

3

réponses

Question


Extract certain data from array where repeats are present (but constant values)
Hello, I have some data where I my relevant column (Y position) is as this yellow graph I want to pull out just the data tha...

7 mois il y a | 1 réponse | 0

1

réponse

Question


Extracting Data from Cell array with multiple values per column
Hi, I have this cell array of 4 columns, but in each column there are 3 values. RESHAPED D2 = 195×4 cell array {["...

7 mois il y a | 2 réponses | 0

2

réponses

Question


Populating a tiledlayout vertically rather than horizontally
Hi, I have an 1D array of images in a cell array. I want to montage them using my own settings, so I have been using tiledlayo...

7 mois il y a | 1 réponse | 0

1

réponse

Question


Assigning tstart to tic, when tic is a timer start function
Hello, Im using a timer object to set some function going with a delay that occurs at a time whilst a loop containing a pause is...

8 mois il y a | 1 réponse | 0

1

réponse

Question


Inserting additional data in an already created table
Hello, Im messing around with tables again and create one from the user inputs from inputdlg prompt = {'Soak(s)','Soak Move...

8 mois il y a | 2 réponses | 0

2

réponses

Question


Remove outliers but be careful with end points
Hi, I have some typcial data like this that I want to remove the outliers (red arrows) I use the rmoutliers function and th...

8 mois il y a | 2 réponses | 0

2

réponses

Question


Cell array Filtering when using readlines
Hello, after I have read an array from a piece of equipment writeline(s,command); pause(0.02); data='N/A'; nb=s.NumBytesAva...

9 mois il y a | 2 réponses | 0

2

réponses

Question


Using Summary on a table to access just the last 2 column stats
Hello, I have an array of numbers that I want to apply the "summary" feature associated with tables to. This is because I want t...

9 mois il y a | 3 réponses | 0

3

réponses

Question


Heatmap and surf plot of same data is looking different. Also is there a better way to 2D smooth
Hello, I am trying to estimate the background of this image. One way I would like to try is to break the image up into small re...

9 mois il y a | 1 réponse | 0

1

réponse

Charger plus