Estadística
6 Preguntas
58 Respuestas
1 Archivo
CLASIFICACIÓN
480
of 297.010
REPUTACIÓN
163
CONTRIBUCIONES
6 Preguntas
58 Respuestas
ACEPTACIÓN DE RESPUESTAS
83.33%
VOTOS RECIBIDOS
42
CLASIFICACIÓN
7.510 of 20.418
REPUTACIÓN
127
EVALUACIÓN MEDIA
4.70
CONTRIBUCIONES
1 Archivo
DESCARGAS
16
ALL TIME DESCARGAS
1137
CLASIFICACIÓN
of 157.687
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
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...
casi 8 años hace | 1 respuesta | 0
1
respuestaEnviada
RivMAP - River Morphodynamics from Analysis of Planforms
Toolbox for analyzing channel masks - centerlines, banklines, widths, migration rates, cutoffs
casi 8 años hace | 16 descargas |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/58264/versions/13/screenshot.png)
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...
casi 9 años hace | 1
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
casi 9 años hace | 0
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 ...
casi 9 años hace | 0
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) ...
casi 9 años hace | 0
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...
casi 9 años hace | 0
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. ...
casi 9 años hace | 1
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
casi 9 años hace | 1
| aceptada
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.
casi 9 años hace | 0
How to remove first three columns from a text file?
blah = importdata('1_rowdel.txt'); datayouwant = blah.data; save('mydata.txt','datayouwant','-ascii')
alrededor de 9 años hace | 0
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;...
alrededor de 9 años hace | 1
| aceptada
Pregunta
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...
alrededor de 9 años hace | 0 respuestas | 2
0
respuestasany 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...
alrededor de 9 años hace | 0
| aceptada
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....
alrededor de 9 años hace | 0
| aceptada
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...
más de 9 años hace | 0
How to generate vectorgraphic pdf from MATLAB?
http://www.mathworks.com/matlabcentral/fileexchange/23629-export-fig
más de 9 años hace | 0
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...
más de 9 años hace | 0
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...
más de 9 años hace | 0
| aceptada
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...
más de 9 años hace | 0
| aceptada
Terminate function after 5 minutes
Using Google, I found this: http://www.mathworks.com/matlabcentral/answers/20237-time-dependent-programs
más de 9 años hace | 0
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.
más de 9 años hace | 2
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...
más de 9 años hace | 1
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.
más de 9 años hace | 0
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...
más de 9 años hace | 0
| aceptada
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?
más de 9 años hace | 0
| aceptada
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...
más de 9 años hace | 0
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...
más de 9 años hace | 0
HOW TO REMOVE QUOTE MARK ?
What happens if you try tnum = str2num(cell2mat(t));
más de 9 años hace | 0