Wolfgang Schwanghart - MATLAB Central
photo

Wolfgang Schwanghart


Last seen: 6 days 前 自 2007 起处于活动状态

Followers: 4   Following: 0

消息

Professional Interests: GIS, Physical Geography, Hydrology, Geomorphology

统计学

All
CodyMATLAB AnswersFile ExchangeFrom 10/07 to 04/25Use left and right arrows to move selectionFrom 10/07Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

4 个提问
41 个回答

File Exchange

17 文件

Cody

3 个问题
105 个答案

排名
970
of 298,116

声誉
79

贡献数
4 个提问
41 个回答

回答接受率
25.0%

收到投票数
18

排名
132 of 20,535

声誉
9,107

平均
4.50

贡献数
17 文件

下载次数
173

ALL TIME 下载次数
82054

排名
2,650
of 160,402

贡献数
3 个问题
105 个答案

评分
1,190

徽章数量
6

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • 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

查看徽章

Feeds

排序方式:

提问


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

2 years 前 | 1 个回答 | 0

1

个回答

已解决


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

3 years 前

已解决


Draw a '1' in a zero matrix!

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已回答
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 ...

3 years 前 | 0

| 已接受

已回答
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 ...

3 years 前 | 0

| 已接受

已提交


TopoToolbox
A MATLAB program for the analysis of digital elevation models

4 years 前 | 49 次下载 |

5.0 / 5
Thumbnail

已提交


subplotlabel
Label subplots in a composite figure

4 years 前 | 4 次下载 |

0.0 / 5
Thumbnail

已解决


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

4 years 前

已解决


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

4 years 前

已解决


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

4 years 前

提问


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

5 years 前 | 3 个回答 | 0

3

个回答

已回答
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...

6 years 前 | 0

已回答
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...

6 years 前 | 0

已提交


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

9 years 前 | 2 次下载 |

0.0 / 5
Thumbnail

已提交


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

10 years 前 | 4 次下载 |

4.0 / 5
Thumbnail

已解决


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

10 years 前

提问


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

11 years 前 | 0 个回答 | 1

0

个回答

已解决


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

11 years 前

已解决


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

11 years 前

已解决


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

11 years 前

已解决


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

11 years 前

已解决


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

11 years 前

已解决


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

11 years 前

已解决


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

11 years 前

已解决


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

11 years 前

已解决


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

11 years 前

已解决


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

11 years 前

已解决


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

11 years 前

加载更多