photo

Jason


Last seen: Today Attivo dal 2011

Followers: 0   Following: 0

Messaggio

Statistica

MATLAB Answers

500 Domande
63 Risposte

RANK
1.554
of 300.946

REPUTAZIONE
45

CONTRIBUTI
500 Domande
63 Risposte

ACCETTAZIONE DELLE RISPOSTE
70.0%

VOTI RICEVUTI
31

RANK
 of 21.119

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK

of 171.851

CONTRIBUTI
0 Problemi
0 Soluzioni

PUNTEGGIO
0

NUMERO DI BADGE
0

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

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

Visualizza badge

Feeds

Visto da

Risposto
General Blockproc questions that aren't in the documentation
Is it also possible to "exclude" and sub images that aren't full size (i,e where the red crosses are) (without rezising/imcrop ...

1 giorno fa | 0

Domanda


General Blockproc questions that aren't in the documentation
I have 4 question's regarding Blockproc. 1: When you take an image and break it up into smaller images (ROI's) to use blockpr...

1 giorno fa | 3 risposte | 0

3

risposte

Domanda


Changing the brush color using a color picker - different format
whats the best way to convert the numbers in val val =[1 1 0] % From color picker To the format required here: marker.FaceC...

9 giorni fa | 1 risposta | 0

1

risposta

Domanda


Creating a Input dlg with the current Format type, with variable number of entries
Hi, I want to be able to create an iput dlg box which will allow me to change the format of a uitable. The number of cols in th...

9 giorni fa | 1 risposta | 0

1

risposta

Risposto
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 ...

15 giorni fa | 0

| accettato

Domanda


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",...

15 giorni fa | 1 risposta | 0

1

risposta

Domanda


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...

16 giorni fa | 1 risposta | 0

1

risposta

Domanda


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...

circa un mese fa | 2 risposte | 0

2

risposte

Domanda


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...

circa un mese fa | 1 risposta | 0

1

risposta

Domanda


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...

circa un mese fa | 1 risposta | 0

1

risposta

Domanda


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...

circa 2 mesi fa | 1 risposta | 0

1

risposta

Domanda


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 ...

2 mesi fa | 1 risposta | 0

1

risposta

Domanda


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...

2 mesi fa | 0 risposte | 0

0

risposte

Domanda


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 ...

2 mesi fa | 1 risposta | 0

1

risposta

Risposto
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...

4 mesi fa | 0

Domanda


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...

4 mesi fa | 3 risposte | 0

3

risposte

Domanda


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...

4 mesi fa | 1 risposta | 0

1

risposta

Risposto
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 mesi fa | 0

| accettato

Domanda


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 mesi fa | 2 risposte | 0

2

risposte

Domanda


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) ...

7 mesi fa | 1 risposta | 0

1

risposta

Domanda


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...

7 mesi fa | 1 risposta | 0

1

risposta

Domanda


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...

7 mesi fa | 2 risposte | 0

2

risposte

Risposto
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 mesi fa | 0

| accettato

Domanda


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 mesi fa | 1 risposta | 0

1

risposta

Domanda


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 mesi fa | 3 risposte | 0

3

risposte

Domanda


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 mesi fa | 1 risposta | 0

1

risposta

Domanda


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 mesi fa | 2 risposte | 0

2

risposte

Domanda


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...

8 mesi fa | 1 risposta | 0

1

risposta

Domanda


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 mesi fa | 1 risposta | 0

1

risposta

Domanda


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...

9 mesi fa | 2 risposte | 0

2

risposte

Carica altro