Ran Yang - MATLAB Central
photo

Ran Yang


Active since 2023

Followers: 0   Following: 0

Statistics

All
MATLAB AnswersFile ExchangeFrom 04/23 to 03/25Use left and right arrows to move selectionFrom 04/23Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

2 Questions
11 Answers

File Exchange

1 File

RANK
2,624
of 297,695

REPUTATION
22

CONTRIBUTIONS
2 Questions
11 Answers

ANSWER ACCEPTANCE
50.0%

VOTES RECEIVED
3

RANK
19,751 of 20,466

REPUTATION
0

AVERAGE RATING
0.00

CONTRIBUTIONS
1 File

DOWNLOADS
1

ALL TIME DOWNLOADS
2

RANK

of 159,380

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

  • First Submission
  • Knowledgeable Level 2
  • First Answer

View badges

Feeds

View by

Submitted


adjustPolarAngles
A function to robustly shift sets of non-uniform angular values for better downstream statistical analyses, such as angular mean...

10 months ago | 1 download |

0.0 / 5

Answered
Why is my code in Matlab Answers not colorful?
I think I might have figured it out? After trying to turn more random things off and on again, I tried disabling my VPN and for ...

2 years ago | 0

| accepted

Answered
Access and extract table array using for loop
See How to work with tables and timetables. You can call everything in the ECG column using {:} and then concatenate it. Note t...

2 years ago | 0

Question


Why is my code in Matlab Answers not colorful?
I started using Matlab Answers a few days ago and this is probably a dumb question, but it's starting to bother me. If I write ...

2 years ago | 3 answers | 0

3

answers

Answered
How can I optimize this 4D contour plot?
It looks like you're trying to visualize volumetric data. One way to do that is with slice, but you need to first restructure yo...

2 years ago | 0

| accepted

Answered
Plotting portion of a color coded scatter plot using a for loop
rgb_time is a Nx3 array, so you need to call all 3 columns using rgb_time(i, :) to get the color for each voxel. (Right now you'...

2 years ago | 1

| accepted

Answered
Bubbles edge detection to quantify size distribution
Conceptually, your edges aren't sharp enough because contour detection isn't the right algorithm for the task. You're trying to ...

2 years ago | 0

Answered
Cell array to xlsx file
You can concatenate each element of your cell array using cat or convert the cell array to a regular array using cell2mat. Then ...

2 years ago | 0

Answered
How do I pass the correct string for a function input parameter?
In a Linux terminal, you can use a backslash (\) within quotes to escape formatting, which allows you to put quotes within quote...

2 years ago | 1

| accepted

Answered
Sort Columns by pairs
Store your table as a Matlab variable and then save that, instead of messing with fopen/fclose. T = ErgebnistabelleAV1(:, {'Fre...

2 years ago | 0

| accepted

Answered
Check if all elements of cell array are equal to a certain value?
If your cell array only contains numbers, then you should convert it to a regular array using cell2mat, then test equality using...

2 years ago | 1

Answered
Error using == Matrix dimensions must agree.
Use ismember instead of == . [r, c] = find(ismember(data, lookupValue));

2 years ago | 0

Answered
Most efficient way to separate numerically labeled objects that share borders?
---- Update on 2023-04-10 ---- Mostly figured this out. I just had to isolate each object in its bounding box instead of runnin...

2 years ago | 0

Question


Most efficient way to separate numerically labeled objects that share borders?
Consider the following image mask: IM = [0 0 0 1 1 1 1 0 0 1 1 1 1 1 0 2 2 2 1 1 1 2 2 2 2 2 1 0 2 ...

2 years ago | 2 answers | 0

2

answers