Community Profile

photo

Wolfgang Schwanghart


University of Postdam

Last seen: 3 Tage vor Aktiv seit 2007

Followers: 0   Following: 0

Kontakt

Professional Interests: GIS, Physical Geography, Hydrology, Geomorphology

Statistiken

All
  • Knowledgeable Level 3
  • 6 Month Streak
  • Promoter
  • Quiz Master
  • GitHub Submissions Level 3
  • Personal Best Downloads Level 4
  • Editor's Pick
  • First Review
  • 5-Star Galaxy Level 5
  • First Submission
  • Thankful Level 1
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


Does imread read subsets from cloud-optimized geotiffs
Hi, cloud-optimized geotiff (COG) is a format to work with spatial raster data in the cloud (https://www.cogeo.org/). I am curr...

mehr als ein Jahr vor | 1 Antwort | 0

1

Antwort

Gelöst


Create a cell array out of a struct
Create a cell array out of a (single) struct with the fieldname in the first column and the value in the second column: in: ...

etwa 2 Jahre vor

Gelöst


Draw a '1' in a zero matrix!

etwa 2 Jahre vor

Gelöst


Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...

etwa 2 Jahre vor

Gelöst


Generate a vector like 1,2,2,3,3,3,4,4,4,4
Generate a vector like 1,2,2,3,3,3,4,4,4,4 So if n = 3, then return [1 2 2 3 3 3] And if n = 5, then return [1 2 2...

etwa 2 Jahre vor

Beantwortet
Plot line with points at given distance
Since you are working with TopoToolbox, you might want to use the function getlocation. If you have a STREAMobj S, then you can ...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
Inverse distance weighting based on direction
Hi Christian, interesting question. First of all, if you follow the IDW-approach, you might save a lot of computing time using ...

etwa 2 Jahre vor | 0

| akzeptiert

Gesendet


TopoToolbox
A MATLAB program for the analysis of digital elevation models

fast 3 Jahre vor | 109 Downloads |

Thumbnail

Gesendet


subplotlabel
Label subplots in a composite figure

mehr als 3 Jahre vor | 1 Download |

Thumbnail

Gelöst


Create an n-by-n null matrix and fill with ones certain positions
The positions will be indicated by a z-by-2 matrix. Each row in this z-by-2 matrix will have the row and column in which a 1 has...

mehr als 3 Jahre vor

Gelöst


Symmetry of vector
Determine whether the vector is symmetric or not (vector could be even or odd in length). For example: x = [1 2 3 3 2 1] ...

mehr als 3 Jahre vor

Gelöst


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

mehr als 3 Jahre vor

Frage


Fit Gaussian mixture model with weighted observations
Hi everyone, looking at the help of fitgmdist, I cannot see that there is the possibility to weight observations. Is there a rea...

mehr als 4 Jahre vor | 3 Antworten | 0

3

Antworten

Beantwortet
2D gaussian filter with a variable sigma
Hi Chad, below is some code that does the trick using nlfilter. To be more efficient, I created a look-up table with a finite s...

etwa 5 Jahre vor | 0

Beantwortet
What makes a Toolbox a Toolbox, and how is it recognized by Matlab?
Hi Chad, the trick is to have a Contents.m-file in the main folder of your toolbox. In TopoToolbox, the file starts with T...

mehr als 5 Jahre vor | 0

Gesendet


Non-crossing polynomial quantile regression
Non-crossing polynomial quantile regression

mehr als 8 Jahre vor | 1 Download |

Thumbnail

Gesendet


Flow Accumulation (upslope area)
Flow accumulation algorithm that routes through flats

etwa 9 Jahre vor | 3 Downloads |

Thumbnail

Gelöst


Box!
Given a box, find the volume of the cube. With each side = a.

mehr als 9 Jahre vor

Frage


Customized icons in workspace
Hi all, I have written a couple of MATLAB classes and, as icing on the cake, I'd like to have customized icons in the worksp...

etwa 10 Jahre vor | 0 Antworten | 1

0

Antworten

Gelöst


index of n in magic(n)
let input=5; magic matrix 17 24 1 8 15 23 5 7 14 16 4 6 13 20 22 ...

etwa 10 Jahre vor

Gelöst


Order of things - 1
Let's assume you have a number of calculations to perform, that depend on each other. E.g. 'A' can be calculated, once the outco...

etwa 10 Jahre vor

Gelöst


Count decimal digits of a number
* Given an integer number you have to return the number of its digits. * For example 248 has 3 digits and 1589 has 4 digits ...

mehr als 10 Jahre vor

Gelöst


Check if equal
Return true if all the elements of an nD array are equal, false otherwise.

mehr als 10 Jahre vor

Gelöst


Add a row of zeros on top of a matrix
Given a matrix, insert a row of zeros as the top row.

mehr als 10 Jahre vor

Gelöst


Too Many Zeros, Dump Them!
Sometimes when I create a matrix, I use this syntax: a = zeros(1000,1000); But when the function ends, I find that I don'...

mehr als 10 Jahre vor

Gelöst


Enlarge array
Given an mxn numeric array (A) and a 1x2 vector (sz) indicating the dimensions [p q] to enlarge each element, return an (m*p)x(n...

mehr als 10 Jahre vor

Gelöst


Pascal's pyramid
In Pascal's triangle each number is the sum of the two nearest numbers in the line above: 1 1 1 ...

mehr als 10 Jahre vor

Gelöst


Create an index-powered vector
Given a input vector x, return y as index-powered vector as shown below. Example x = [2 3 6 9] then y should be [...

mehr als 10 Jahre vor

Gelöst


Matrix to column conversion
Given a matrix of any size, convert it into a column vector. e.g A=[10 20 30; 40 50 60] then, B = [10; 40; ...

mehr als 10 Jahre vor

Gelöst


Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
The given function returns the index of the maximum value in a given matrix. such as X=[4,3,4,5,9,12,0,5] Ans= 6 if maxim...

mehr als 10 Jahre vor

Mehr laden