photo

Jon


Last seen: 3 mois il y a Actif depuis 2013

Followers: 0   Following: 0

Message

Statistiques

All
  • 5-Star Galaxy Level 1
  • Personal Best Downloads Level 1
  • First Review
  • First Submission
  • Thankful Level 1
  • Knowledgeable Level 4
  • First Answer

Afficher les badges

Feeds

Afficher par

Question


How can I plot a latitude / longitude point on a geotiff? (Without mapping toolbox.)
Hi. I have some geotiffs in geographic coordinates (WGS84) from various areas around the globe. I also have a list of points, de...

environ 7 ans il y a | 1 réponse | 0

1

réponse

A soumis


RivMAP - River Morphodynamics from Analysis of Planforms
Toolbox for analyzing channel masks - centerlines, banklines, widths, migration rates, cutoffs

plus de 7 ans il y a | 7 téléchargements |

Thumbnail

Réponse apportée
Replacing a for loop with logical indexing
B = sum(isnan(A))>2;

environ 8 ans il y a | 2

Réponse apportée
How to get different scaling with the same range on the same axis?
I don't know of any commands that accomplish what you want, but you could rescale your y-axis, plot normally, then set your tick...

environ 8 ans il y a | 1

Réponse apportée
Assigning a variable to any value in a matrix
Try this for x = 1:10 if sum(x + Matrix(:) == 5) > 0 disp(x) end end

environ 8 ans il y a | 0

Réponse apportée
I am writing a code where user clicks a point in hole and it has to be filled with white.I am not allowed to use imfill.
A possible but perhaps slow solution is: 1. Get list of all holes in the image. There are a few ways to do this; you can use ...

environ 8 ans il y a | 0

Réponse apportée
In a sequence of 0 and 1, how to make sure that no same values appear more than 2 times consecutively?
Just modify your loop a little bit: for i = 3:length(nums) if nums(i) == nums(i-1) && nums(i) == nums(i-2) ...

plus de 8 ans il y a | 0

Réponse apportée
How do I find more than one max, min and intersections values for different segments of the graph?
On the file exchange, look for peakdet.m for peaks/valleys and intersections.m for intersections (there are many types of both f...

plus de 8 ans il y a | 0

Réponse apportée
Plot a variable against multiple independent variables.
http://www.mathworks.com/help/matlab/creating_plots/plotting-with-two-y-axes.html Also search plotyy on the file exchange. ...

plus de 8 ans il y a | 1

Réponse apportée
How do I find fork points of a skeleton? By fork point, I mean, a skeleton point having more than two adjacent points. Please help.
Have you tried branchpoints? http://www.mathworks.com/help/images/ref/bwmorph.html

plus de 8 ans il y a | 1

| A accepté

Réponse apportée
x = [12 54 21 36 27 19 16 78 65 43 38 91 5 8 3 18] how can i find elements of x (the values of x) such that xi<=30 and 30<=xi<=50
Look at the find() function. You can use logical operators like < , > , and = . Just try some things and see what happens.

plus de 8 ans il y a | 0

Réponse apportée
How to remove first three columns from a text file?
blah = importdata('1_rowdel.txt'); datayouwant = blah.data; save('mydata.txt','datayouwant','-ascii')

plus de 8 ans il y a | 0

Réponse apportée
how would I create a 6x6 matrix with evenly distributed values from -10 to 10?
Not entirely sure how you want the values distributed (by row or column), but see if this helps: Msize = 6; n = Msize^2;...

plus de 8 ans il y a | 1

| A accepté

Question


Is it possible to get signed curvature from splines of a non-single-valued curve?
I am trying to compute the curvature of a meandering river centerline. I have been using a method of finding the angle of the ce...

plus de 8 ans il y a | 1 réponse | 2

0

réponse

Réponse apportée
any size of matrix
Kinda confusing what you're asking. If your input matrix is M, just write ones(size(M)) for a matrix of ones the sam...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
How do I stop a code from continuing ifelse statements?
http://www.mathworks.com/help/techdoc/ref/return.html http://www.mathworks.com/help/techdoc/ref/break.html Take your pick....

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Looking to plot a known, single value variable, against another, single value variable, for a range of figures
y = 0:1:100; % can change this range to whatever you want; the middle number is the interval R1 = (m*(L*7.22)*(f*cosd(y...

plus de 8 ans il y a | 0

Réponse apportée
How to generate vectorgraphic pdf from MATLAB?
http://www.mathworks.com/matlabcentral/fileexchange/23629-export-fig

plus de 8 ans il y a | 0

Réponse apportée
Stop for loop if F <= 0
Why are you opposed to using break? If you mean that you want to redraw a random number if F <=0, you could do something like th...

presque 9 ans il y a | 0

Réponse apportée
combine 2 image results of segmentation, into one of axes
I may not understand the question, but why not just use segmented portions 5 and 6 as a mask on the original BW image? I guess t...

presque 9 ans il y a | 0

| A accepté

Réponse apportée
resizing all images in a folder
Yep. Try the following function: dc = dir('*.jpg'); but set the filetype to whatever the images are. Make sure your work...

presque 9 ans il y a | 0

| A accepté

Réponse apportée
Terminate function after 5 minutes
Using Google, I found this: http://www.mathworks.com/matlabcentral/answers/20237-time-dependent-programs

presque 9 ans il y a | 0

Réponse apportée
how to make comments *not* wrap?
Did you even look through the Editor options in Preferences? There is a button you can uncheck to turn it off.

presque 9 ans il y a | 2

Réponse apportée
Error: The expression to the left of the equals sign is not a valid target for an assignment.
I can't figure out why you're getting an error, but it works if you put square brackets around the expression, like this ra...

presque 9 ans il y a | 1

Réponse apportée
displaying only even values in a for loop?
Use the _rem_ command. If the remainder is zero after dividing the number by 2, display it. I'm purposely not writing the code.

presque 9 ans il y a | 0

Réponse apportée
repeating values in the loop
You are looping over j, but nothing in your equation is changing with respect to j. Only after all the j's are finished and i ch...

presque 9 ans il y a | 0

| A accepté

Réponse apportée
Noob problem: Defining a fumction and passing values issues an error "Subscript indices must either be real positive integers or logicals."
Runs fine on my machine-no errors. 2015a. Do you have a variable named SSD or zeros?

presque 9 ans il y a | 0

| A accepté

Réponse apportée
When you dilate and erode a binary image of a skeleton does the skeleton keep its proportion?
I do this exact procedure in the context of skeletonizing rivers to find their centerlines. I have to add the ends back after ru...

presque 9 ans il y a | 0

Réponse apportée
Getting the mean value of a row in an array?
If you have an array called myarray that is mo x yearidx (as you state in your question) and you want the average of all mo == j...

presque 9 ans il y a | 0

Réponse apportée
HOW TO REMOVE QUOTE MARK ?
What happens if you try tnum = str2num(cell2mat(t));

presque 9 ans il y a | 0

Charger plus