photo

Thomas


Stockholm University

Last seen: 대략 2개월 전 2012년부터 활동

Followers: 0   Following: 0

메시지

Professional Interests: TEM, Image analysis, EELS, Spectral Imaging, Photography

통계학

All
  • Thankful Level 1
  • Promoter
  • Solver

배지 보기

Feeds

보기 기준

질문


Shuffle method on custom datastore written for a single binary file
I am writing a custom datastore and am seeking some assistance. My datasets consist of stacks of 2D images (frames) stored sequ...

3년 초과 전 | 답변 수: 0 | 0

0

답변

질문


Visualizing image deformation (object shrinkage)
I have two images of the same, complex object taken at two different times. The object has shrunk between images and I need to ...

3년 초과 전 | 답변 수: 1 | 0

1

답변

질문


Smooth interpolation for warping an image using a deformation map
I have a series of 2D images that I need to register similar to the one below. The registration is neither geometric nor ri...

5년 초과 전 | 답변 수: 0 | 0

0

답변

문제를 풀었습니다


We love vectorized solutions. Problem 1 : remove the row average.
Given a 2-d matrix, remove the row average from each row. Your solution MUST be vectorized. The solution will be tested for ac...

7년 초과 전

문제를 풀었습니다


Matrix indexing with two vectors of indices
Given a matrix M and two index vectors a and b, return a row vector x where x(i) = M(a(i),b(i)).

7년 초과 전

문제를 풀었습니다


Getting logical indexes
This is a basic MATLAB operation. It is for instructional purposes. --- Logical indexing works like this. thresh = 4...

7년 초과 전

문제를 풀었습니다


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

7년 초과 전

문제를 풀었습니다


Return elements unique to either input
Given two numeric inputs a and b, return a row vector that contains the numbers found in only a or only b, but not both. For ex...

7년 초과 전

문제를 풀었습니다


Replicate elements in vectors
Replicate each element of a row vector (with NaN) a constant number of times. Examples : n=2, A=[1 2 3] -> [1 1 2 2 3 3] n=0...

7년 초과 전

문제를 풀었습니다


Set the array elements whose value is 13 to 0
Input A either an array or a vector (which can be empty) Output B will be the same size as A . All elements of A equal to 13...

7년 초과 전

문제를 풀었습니다


Find the largest value in the 3D matrix
Given a 3D matrix A, find the largest value. Example >> A = 1:9; >> A = reshape(A,[3 1 3]); >> islargest(A) a...

7년 초과 전

문제를 풀었습니다


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

7년 초과 전

문제를 풀었습니다


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

7년 초과 전

문제를 풀었습니다


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

7년 초과 전

문제를 풀었습니다


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Examp...

7년 초과 전

문제를 풀었습니다


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

7년 초과 전

문제를 풀었습니다


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

7년 초과 전

문제를 풀었습니다


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

7년 초과 전

문제를 풀었습니다


Is my wife right?
Regardless of input, output the string 'yes'.

7년 초과 전

문제를 풀었습니다


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

7년 초과 전

문제를 풀었습니다


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

7년 초과 전

문제를 풀었습니다


Add two numbers
Given a and b, return the sum a+b in c.

7년 초과 전

문제를 풀었습니다


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

7년 초과 전

문제를 풀었습니다


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

7년 초과 전

답변 있음
Use griddedinterpolant to interpolate over missing values
Both of the suggestions by Walter and Guillaume worked very well for me. If I choose to use the exact syntax I suggested above,...

7년 초과 전 | 1

질문


Use griddedinterpolant to interpolate over missing values
I would like to use griddedInterpolant to interpolate over datapoints that I need to discard from an N-dimensional matrix. Spec...

7년 초과 전 | 답변 수: 3 | 0

3

답변

문제를 풀었습니다


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

7년 초과 전

답변 있음
How can I insert the *contents* of a string variable directly into my code?
This solution worked very well for me, thanks! I had to make one minor modification. I should enclose the string in double quo...

7년 초과 전 | 0

질문


How can I insert the *contents* of a string variable directly into my code?
I am working with git version control and would like to use the following function to commit my changes: function gitCommit...

7년 초과 전 | 답변 수: 3 | 0

3

답변

질문


Improving the consistency of the NNMF function
I'm attempting to use non-negative matrix factorization on a matrix containing spectral information (A). Whenever I run the nnm...

9년 초과 전 | 답변 수: 1 | 0

1

답변

더 보기