photo

Jakob


Last seen: 3年弱 前 2020 年からアクティブ

Followers: 0   Following: 0

Student

統計

All
  • Community Group Solver
  • MATLAB Central Treasure Hunt Finisher
  • Solver
  • Knowledgeable Level 2
  • First Answer
  • First Submission

バッジを表示

Feeds

表示方法

質問


Make the dropdown already scrolled down to the bottom in app
I'm designing an app, which shows the data of each patient. When booting up the app, I already made the app to choose always the...

3年弱 前 | 1 件の回答 | 0

1

回答

回答済み
finding which number row my result is from
[Row, Col] = find(YourMatrix == YourPercentile)

3年以上 前 | 2

回答済み
How to generate matrix as shown below?
n = 3; A(1,1:n+1) = 0; for i = 2 : n+1 A(i,1:i-1) = A(i-1, 1:i-1) +1; end for i = 1: n+1 B(i,1:i) = (n+1-i); end ...

3年以上 前 | 0

回答済み
How to use MATLAB to determine if an exe process exist?
[~,b] = system('tasklist'); IsRunning = contains(b, 'mspaint.exe'); %1, if is running / 0, if not

3年以上 前 | 1

| 採用済み

回答済み
How to measure the shortest distance among different points using Matlab
B = randi([-10 10],5,3); % just some random numbers minimum = sqrt(sum((B(1,:)- B(2,:)).^2)); for i = 1 : size(B,1)-1 for...

3年以上 前 | 1

回答済み
How can i keep asking them the same inputdlg based on how many they want to input?
count='How many values do you want?'; vcount=inputdlg(count); vcount = str2double(vcount{1}); eqprompt='Enter Values'; value...

3年以上 前 | 1

| 採用済み

回答済み
How do I count the number of all color pixels of different shades in the image attached?
numYellowPixelsI= size(find((I(:,:,1) == 255 & I(:,:,2) == 255 & I(:,:,3) == 0)),1); In this case there would be 7025 yellow Pi...

4年弱 前 | 0

| 採用済み