photo

Manne Plok


Active since 2018

Followers: 0   Following: 0

Statistics

MATLAB Answers

6 Questions
0 Answers

RANK
128,860
of 297,457

REPUTATION
0

CONTRIBUTIONS
6 Questions
0 Answers

ANSWER ACCEPTANCE
33.33%

VOTES RECEIVED
0

RANK
 of 20,438

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 158,938

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 2
  • Thankful Level 1

View badges

Feeds

View by

Question


Simple Question (I think) about finding zeros(and other number) in an array
I have the following array. R = [ 1 2 0 1 0 2] if values in R = 0 I want to replace it with 3, so I did If R == 0 ...

6 years ago | 1 answer | 0

1

answer

Question


Question with vectorisation?
Hello This is the code I have. n = 1:1000 A(n,1) = ceil(rand*5); What this does is it finds a random value between 1 ...

6 years ago | 1 answer | 0

1

answer

Question


Sorting based on the total value of the point in 3 layers
I have this 4*1*3 data data(:,:,1) = [12;23;0;2] data(:,:,2) = [2;1;8;25] data(:,:,3) = [3;9;4;0] And I want it to be...

6 years ago | 0 answers | 0

0

answers

Question


Question about "min" command.
I have a code that generates the following 2D array: 0 300 7500 10800 76800 86700 36300 30000 10800 7500 7500 10800 3...

6 years ago | 1 answer | 0

1

answer

Question


Alternative to while loops without using loop?
Hi, are there any more efficient alternatives to while loops. eg a = zeros(3,1,3); b = ones(3,1,3); while isequal(...

6 years ago | 2 answers | 0

2

answers

Question


Remove my for loop using meshgrid?
[rows, ~, ~] = size(file) for i = 1:rows value = min(abs(file(i,:,1) - shadow(:,:,1)).^2); storage(i,:) = value...

6 years ago | 1 answer | 0

1

answer