photo

Matz Johansson Bergström


Last seen: 4 mois il y a Actif depuis 2012

Followers: 0   Following: 0

Message

Check out my website: www.matzjb.se for tips on various coding-related problems. Professional Interests: image processing, algorithms, computer graphics, high performance computing.

Statistiques

All
MATLAB Answers

0 Questions
67 Réponses

Cody

0 Problèmes
16 Solutions

RANG
407
of 299 722

RÉPUTATION
200

CONTRIBUTIONS
0 Questions
67 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
40

RANG
 of 20 790

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
29 772
of 165 604

CONTRIBUTIONS
0 Problèmes
16 Solutions

SCORE
160

NOMBRE DE BADGES
1

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Knowledgeable Level 4
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
reason for converting image into double
The reason is precision. Say you read an image using (write this in the Matlab prompt) >>Im = imread('filename'); >>clas...

environ 10 ans il y a | 1

Réponse apportée
why slow 5 times when tic or toc and expression in one line?
Funny enough I also get horrible timings. I am using Matlab 2014a and I get: Elapsed time is 1.053381 seconds. Elapsed t...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
How can I fill a matrix column with dta coming from another matrix according to index
Without knowing the size of the matrix, it might be a good idea to use a sparse matrix, instead of filling the non existant elem...

plus de 10 ans il y a | 1

| A accepté

Réponse apportée
Permutation of array elements
This seems to work A = {'test a 1', 'test a 2'}; B = {'test b 1', 'test b 2'}; WAKE = [A',B'] %see below for explanat...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
How to perform skull stripping using matlab?
I found something that might be of help: <http://se.mathworks.com/help/matlab/visualize/exploring-volumes-with-slice-planes.htm...

plus de 10 ans il y a | 1

Réponse apportée
using mex -setup error
As the error message says you are missing a suitable compiler to create mex files. See <http://se.mathworks.com/help/matlab/matl...

plus de 10 ans il y a | 0

Réponse apportée
How can I insert row into matrix without deleting its values?
The only way I know of is to create a new matrix consisting of A and the row and then append the three matrices together, for in...

plus de 10 ans il y a | 18

| A accepté

Réponse apportée
How to solve the problem Ax=b, when A is (14400,14400) and b (14400,1)?
If A is full \ has to perform a Gaussian elimination. A is ~1.5GB in double precision and it seems that \ requires at least that...

plus de 10 ans il y a | 0

Réponse apportée
I was record on my phone a sound. how to hear that sound in matlab.
I found a matlab script (with exe and library) that can import m4a files. I tried it and it seems to work. See <http://www.ee.co...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
how can obtain min of matrix
This solution is maybe a little ugly, but it works Say that A is the matrix. tmp = A; %we will destroy elements, ...

plus de 10 ans il y a | 0

Réponse apportée
How to solve this equation?
This is actually very simple using the *\* operator, see <http://se.mathworks.com/help/matlab/ref/mldivide.html mldivide,\ docum...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
Multi-Line Colors in 2014
That's odd. I'm using Matlab R2014a and it seems to be working fine. Are you using Matlab R2014b?

plus de 10 ans il y a | 1

Réponse apportée
what is the difference between a vector and a matrix?
A matrix is simply a rectangular array of numbers and a vector is a row (or column) of a matrix. Read more about the practica...

plus de 10 ans il y a | 3

| A accepté

Réponse apportée
How can I get different 2D Matrices from a 3D matrix?
The size of the A(1,:,:) will be a 1-by-n-by-z matrix, so you have to temporarily store it in a 2d matrix tmp(:,:) = A(1,:,...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
how to crop an image
In my answer I throw away the green and blue channels of the PNG, because it is black/white. If you want to use a color image, t...

plus de 10 ans il y a | 2

Réponse apportée
How to read data one by one
It should be sufficient to write filename='coordinates.txt'; [x,y,z] = dataread('file', filename, '%f%f%f', 'del...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
FFT manual help formulation
The range 1:50 is only used in the plot, not in the rest of the example. See <http://se.mathworks.com/help/matlab/ref/fft.html ...

plus de 10 ans il y a | 0

Réponse apportée
Replacing non-alphabetic characters with numbers?
Yet another answer, just for the "cellfun" of it ;-) tmp = cellfun(@(x) isstrprop(x, 'alpha'), {TS1}, 'UniformOutput', fals...

plus de 10 ans il y a | 0

Réponse apportée
how can i read hdr file?
Have you tried http://www.mathworks.se/help/images/ref/hdrread.html?

presque 11 ans il y a | 0

Réponse apportée
Assigning colors on a cylinder
Simplest way [x,y,z] = cylinder; surface(x,y,z, 'FaceColor','texturemap',... 'EdgeColor','none','Cdata', rand(10)...

presque 11 ans il y a | 1

| A accepté

Réponse apportée
How to find first ten prime numbers that are greater than 4?
You could do it like this x = primes(100); %pick primes smaller than, say 100 x = x(x>4); %pick the ones larger than 4 ...

presque 11 ans il y a | 0

| A accepté

Réponse apportée
Why aren't my cases working correctly
I would put period and t calculation outside of the switch and I think you want t = linspace(0,period*cycles,100);

presque 11 ans il y a | 0

Réponse apportée
Index through datestring, selecting whole hours
Another alternative where I just pick the last two characters from the first column of the cell: %mock data: cel{1,1...

presque 11 ans il y a | 0

Réponse apportée
How can I improve Matlab perfomance for this code?
It seems to me that combntns (which is the same as nchoosek) is taking a long time to finish. So, the appending of the combinati...

environ 11 ans il y a | 0

| A accepté

Réponse apportée
how to integrate inside 'for' loop
To solve this problem you can use a anonymous function handle to a function with x and n as arguments. f = @(x) myfun(x, ...

environ 11 ans il y a | 0

| A accepté

Réponse apportée
Plotting a 3D matrix graph
First, I assume that the graph is undirected, edges are going both ways, but you might want to change that maybe. A =...

environ 11 ans il y a | 0

| A accepté

Réponse apportée
access values in dataset
LinearModel is using tables, so you can write tmp = table2array(Im.Coefficients) and access tmp.

environ 11 ans il y a | 0

Réponse apportée
Color code with dash line
x=1:10; plot(x, cos(x), ':','color',[0,0.5,0],'linewidth',3)

environ 11 ans il y a | 2

| A accepté

Réponse apportée
what does c(:).' mean? c should be a vector
By writing c(:)' you are making sure that the vector has the dimension 1xn, where n is the length of the vector, a row vector. H...

environ 11 ans il y a | 1

| A accepté

Réponse apportée
how to create 200 random matrices using loop..
I have not tried it but something like this: n=200; tmp = rand(32,32,n); and then to multiply each matrix for i...

environ 11 ans il y a | 0

Charger plus