photo

Johannes Fischer


Last seen: circa un mese fa Attivo dal 2017

Followers: 0   Following: 0

Statistica

All
MATLAB Answers

0 Domande
32 Risposte

Cody

0 Problemi
41 Soluzioni

RANK
786
of 301.537

REPUTAZIONE
100

CONTRIBUTI
0 Domande
32 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
16

RANK
 of 21.318

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK
12.694
of 175.234

CONTRIBUTI
0 Problemi
41 Soluzioni

PUNTEGGIO
491

NUMERO DI BADGE
2

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Knowledgeable Level 3
  • 3 Month Streak
  • Community Group Solver
  • Knowledgeable Level 2
  • First Answer
  • Solver

Visualizza badge

Feeds

Visto da

Risposto
Creating a custom colormap with a specific range of colors
I'm not sure I understand your problem correct, but does % create matrix with vals -50 50 matrix = 100 * (rand(100, 100) - 0.5...

oltre 4 anni fa | 0

Risposto
Find same numbers in two vectors
I think what you need is the ismember function: a = [3,8,10,11] b = [2,3,10,12] result = a(ismember(a, b)) % or result = ...

quasi 5 anni fa | 0

| accettato

Risposto
How to find a Y value of a given X?
You want to use an anonymous function. So in your case: % define the anonymous function v = @(t) 50*exp(-1600*t) - 50*exp(-40...

oltre 5 anni fa | 0

Risposto
Find different possible combinations of the rows of two matrices.
a = [1 2 3; 4 5 6; 7 8 10]; % 3 by 3 matrix b=a + 10; % 3 by 3 matrix r=size(a, 1); % create repetitions of values a = re...

oltre 5 anni fa | 0

| accettato

Risposto
Shepp-Logan phantom dataset
In their paper from 1974, they call these ellipses tumors (see caption of Figure 1) https://web.archive.org/web/20160304035526/...

quasi 6 anni fa | 1

| accettato

Risposto
Repeating a process with changing file names, possibly with a loop.
Assuming you dont need a001 etc. % N is the number of matrices for ii = 1:N % load or create A %... a...

quasi 6 anni fa | 0

| accettato

Risposto
Change pixel color and intensity independently in an image
Here is how i would try to do it: % First, you need to get the image that you see as an RGB-matrix. If your % ratioImage is an...

quasi 6 anni fa | 0

Risposto
How to repeat number of array by values in another matrix
array = [3 4 2 1]; matrix = [0 2 4 5; 1 3 2 6; 1 0 3 5; 5 6 3 1]; % first, you need a vector with the same length of array t...

quasi 6 anni fa | 1

| accettato

Risposto
How can I check that a newly generated sequence is already in the existing structure list or not?
newPerm = [2 1 3 4]; % this line basically runs over the elements of your struct array and checks whether the array in field ...

quasi 6 anni fa | 0

| accettato

Risposto
Creating 3D surface from binary slice images
Have a look at isosurface

oltre 6 anni fa | 1

Risposto
Using an index in a loop as a variable in another function
You need to provide it as an additional argument (the same holds for d, g, and h): ... alpha(n+1,j) = alpha(n,j) + h * vel...

oltre 6 anni fa | 0

| accettato

Risposto
Array indices must be positive integers or logical values.
The first entry in any kind of Matlab vector/array/matrix... is indexed with 1 (and not 0, as for example in C++). That is why y...

oltre 6 anni fa | 0

Risposto
Save elements of an array in a byte variable.
% random array of 8 rows with 4 bytes each bin = logical(round(rand(8, 32))); % how many bytes are there in total NoBytes =...

oltre 6 anni fa | 2

| accettato

Risposto
Selecting specific values from an array based on a defined condition
Th logical expression 0 <= m+d <= 300 is not interpreted by Matlab as you think it is. It rather is interpreted as (0 <= m+d...

oltre 6 anni fa | 1

Risposto
How to express coordinate range of an area
You are looking for the colon operator (https://www.mathworks.com/help/matlab/ref/colon.html) x = 1119:1121; y = 392:394;

oltre 6 anni fa | 0

Risposto
How to make the binarized image clearer
The problem why your output looks like this is not necessarily to do with the imbinarize function. The problem lies in the way t...

oltre 6 anni fa | 0

| accettato

Risposto
Returning negetive numbesr from text file using regexp
With questions like these it's very helpful to have an example of waht exactly your data looks like. If you know exactly how you...

oltre 6 anni fa | 0

| accettato

Risposto
Swapping the columns based on matrix even length
Assuming that there is always an even number of columns: matrix = repmat(1:10, [3, 1]); L = size(matrix, 2); ind = [2:2:L...

oltre 6 anni fa | 0

| accettato

Risposto
How to fuse SPECT and CT images having different matrix sizes?
You can import the data using dicomreadVolume (https://www.mathworks.com/help/images/ref/dicomreadvolume.html) There is an intr...

oltre 6 anni fa | 1

Risposto
How can I fit a Gaussian to data that only forms the peak
You should always help your fitting algorithm by setting upper and lower bounds for the parameters. Even more important are star...

oltre 6 anni fa | 2

| accettato

Risposto
ranking of vector with non-unique elements
So you want to order starting with the highest value? F = [10.1 31.0 20.5 20.5 10.1] [~, ~, rankF] = unique(max(F)-F)

oltre 6 anni fa | 3

| accettato

Risposto
Standard Deviation of 3D matrix with NaN elements
As described in the doumentation for std, there is a flag on how to deal with 'NaN' values. If you want the standard deviation o...

oltre 6 anni fa | 1

Risposto
How to make two numeric field related in GUI?
The 'Callback' property of the uicontrol defines which function to call when you press enter while the edit field is in focus. A...

oltre 6 anni fa | 0

Risposto
How to randomize audio files
What kind of randomization do you want? Play all sounds once, before playing a sound twice? randomizedOrder = randperm(80); ...

oltre 6 anni fa | 0

Risposto
How to reshape a square matrix diagonally to a vector?
I would start with writing down the subscripts in the order you want to select the elements of the matrix. A=[0 1 0; 1 1 1...

oltre 6 anni fa | 1

Risposto
How to assign a different name of a matrix for each iteration?
You could use assignin for that purpose: for j = 1 : size(varargout,2) fn = modalfit(varargout{1,j}, f, fs, 10, 'FreqRange', ...

oltre 6 anni fa | 0

Risposto
for loop values of certain output range
Two possible solutions: x = 3; idx = 1; for c = -2:1:2; for q = -2:1:2; g = (c*x)+q*(c+x); % g at this...

oltre 6 anni fa | 0

| accettato

Risposto
How to save the image WITHOUT the white background using imwrite (advanced problem)
% read image as NxMx3 rgb matrix RGB = imread('bird1.png'); imshow(RGB) s = size(RGB); rectangle('position',[1 1 s(2) s(1)...

oltre 6 anni fa | 0

Risposto
How do I check if a folder exists which has a variable name?
Your code is trying to store in fname the content of the field 'bin' of the struct 'Measurement_20190829_18_15_10', which propab...

oltre 6 anni fa | 0

Risposto
How to find the previous position in an array where a value is met?
This is an ideal playgrouond to see how you can increase speed by avoiding for loops. % My idea is to create an array, that in ...

oltre 6 anni fa | 2

| accettato

Carica altro