Community Profile

photo

Brian Hart


Aktiv seit 2018

Followers: 0   Following: 0

Statistiken

  • Knowledgeable Level 3
  • 6 Month Streak
  • Knowledgeable Level 2
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
Add Gaussian noise to mesh or point cloud
You can generate normally-distributed random values with randn. For a point cloud for example, if you have 100 points with x, y,...

etwa 5 Jahre vor | 0

| akzeptiert

Beantwortet
Error when using createMask
Hi Manuel, A mask is created from an ROI (region of interest), not an image. First you need to create an ROI with drawellipse, ...

etwa 5 Jahre vor | 0

Beantwortet
How to make a table and 2D graph of 3 variables?
I'm not sure about the "table" you want. Here's a simple example of how to define two vector values, then compute a 2D result an...

etwa 5 Jahre vor | 0

Beantwortet
Input dialog boxes accepts binary bit sequence
Hi Lorrenzo, MATLAB doesn't support binary representation. So when you run the above code, MATLAB thinks the value in temp2 is ...

etwa 5 Jahre vor | 0

| akzeptiert

Beantwortet
Changing Axes direction with positive z-axis downwards
Hi Ryan, The first step is to change your second line to say f = figure(1); This gives you a handle to update the figure prop...

etwa 5 Jahre vor | 3

| akzeptiert

Beantwortet
extraction of a specific slice from the 3D shepp Logan phantom to reconstruct it
If it's a standard 3D array, you can do something like slice = image(:,:,64) to get the 64th slice.

etwa 5 Jahre vor | 0

| akzeptiert

Beantwortet
Why is my graph coming out blank when i try and plot this code?
It's an error in your calcuation of y. Check the size and you'll see it's coming out as a scalar. Replace "/" with "./", since ...

etwa 5 Jahre vor | 0

Beantwortet
How do I change the function for certain points in a for loop
I suggest making an "other function" variable that has the values for which you want to use the other function. Then do an IF te...

etwa 5 Jahre vor | 0

| akzeptiert

Beantwortet
How to reference each element of a column vector in an if statement
Hi Brian, You need to use subscripts to index the Spin variable, as well as x. For example, if Spin(jj) <= .99999 Amou...

etwa 5 Jahre vor | 0

| akzeptiert

Beantwortet
How do I plot the angle
Hi Umut, This is a neat problem! Some nice physics with rectangular-to-polar conversions and trig asymptotes. My code to solve ...

etwa 5 Jahre vor | 1

| akzeptiert

Beantwortet
Deleting Entries in an Array
Hi Ramitha, You almost got it. For your last line of code, try A(vals,:)=[]; The way you tried it at first uses linear lindex...

etwa 5 Jahre vor | 1

| akzeptiert

Beantwortet
Bounding Boxes at any points
Hi arun, Here's some code to do what you asked, but with everything in units of the graph/plot (not mixing mm / pixel coordinat...

etwa 5 Jahre vor | 0

| akzeptiert

Beantwortet
2d coordinate transformation specified origin matlab
Hi Reuben, You're almost there. The basic idea is to subtract the rotation point value from the target point, so that you ARE ...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
how to plot image signal ?
Hi Tim, Try replacing "plot" with "imshow". Also need to remove the quotes from the second command in the last line... subplot...

mehr als 5 Jahre vor | 1

Beantwortet
MATLAB Engine for python
Try using sys.addpath in Python.

mehr als 5 Jahre vor | 0

Beantwortet
How can i detect max value and his index ?
Let's say your vector is a =[1 2 5 NaN NaN 9 0 23 12 NaN NaN NaN 6 2 8] Then the m...

mehr als 5 Jahre vor | 0

Beantwortet
how to create this matrix?
Hi diadalina, I think it would look something like this... iLength = 5; %rows jLength = 7; %cols b=zeros(iLength, jLengt...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Read mixed numbers in Matlab
Here's some code to read the data in as a table, then update the mixed number values in each row to the decimal... T = readtabl...

mehr als 5 Jahre vor | 0

Beantwortet
"cleaning" a horizontal line removal code for object detection.
Hi Janrex, For a nice clean image like this, there's a very simple solution. Just compute a row sum; rows with staff lines have...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
keep the number give by bwlabel to one object constant in all images of an image sequence
Hi Sofia, I assume these 10 images are related; that they show a changing field. I think the only way to do what you want is t...

mehr als 5 Jahre vor | 0

Beantwortet
how can i make the result number from convolution become positive?
Convolution results can be negative. If you want only positive results, two options are to either take the absolute value of th...

mehr als 5 Jahre vor | 0

Beantwortet
Undefined function 'int' for input arguments of type 'char'. keep getting error using matlab2015b
In the first line you define an eqution as a text string (in quotes). Then in the second line you pass that text string into the...

mehr als 5 Jahre vor | 0

Beantwortet
Issue with table data creating strings and recognising as numbers
Hi Hannah, Try replacing, for example, nTxc=c(:,2)); with nTxc=a.cmes100917(:,2).mag_magnetic_field_mso_xnT; (I used tab ...

mehr als 5 Jahre vor | 0

Beantwortet
Beginner question about for loops and indexing
Hi Callum, You're really close. First, you can move the "r = ... " line outside the loop to do the operation on the whole arra...

mehr als 5 Jahre vor | 0

| akzeptiert