photo

Akihumi


Last seen: 1년 초과 전 2020년부터 활동

Followers: 0   Following: 0

통계

All
MATLAB Answers

0 질문
17 답변

Cody

0 문제
5 답안

순위
1,583
of 300,364

평판
44

참여
0 질문
17 답변

답변 채택
0.00%

획득한 표
4

순위
 of 20,934

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
58,947
of 168,407

참여
0 문제
5 답안

점수
60

배지 수
1

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Revival Level 1
  • Solver
  • Knowledgeable Level 2
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
How to find the indeces of same values within two vectors with repetitive values?
flip it to another way should work: idx = find(ismember(B,A)==1);

5년 초과 전 | 0

답변 있음
Tolerance, correct digits
You can try to type that in Command Window and you might have your answer right there :)

5년 초과 전 | 0

답변 있음
How we can get snapshot in matlab after a time limit say 3 second automatically
Maybe timer can help?

5년 초과 전 | 0

답변 있음
3 subplots of those three intervals in a horizontal line
Do you mean using something like subplot? Eg: figure subplot(1,3,1) plot(x,A) subplot(1,3,2) plot(x,B) subplot(1,3,3) pl...

5년 초과 전 | 1

답변 있음
Graph of sin(10*x*cos(x))
Do you mean something like this? x = 0:0.01:10; plot(sin(10.*x.*cos(x)));

5년 초과 전 | 0

답변 있음
How to find the unique elements in multiple strings?
unique([strsplit(A,', '), strsplit(B,', ')])

5년 초과 전 | 0

| 수락됨

답변 있음
How to assign a different color to lines being plotted in a loop?
* Edits: Sorry for the wrong information about the default line color. Otherwise, you can try figure hold on randColor = ra...

5년 초과 전 | 1

| 수락됨

답변 있음
How to create a black border in each figure of a subplot with colormaps?
Have you tried box?

5년 초과 전 | 0

| 수락됨

답변 있음
Plot P50 value with range from P10 to P90 for different groups on same plot
Do you mean errorbar?

5년 초과 전 | 0

| 수락됨

답변 있음
how do i compare my test image with the one in my database using euclidean distance?
I assume that you have RGB images. Do you mean that you want to compute the euclidean distance of the pixes at same location on...

5년 초과 전 | 0

답변 있음
how to solve 'Index exceeds the number of array elements (1)'?
Your x and y are single value, so it will have error when i==2. You can make use of 'Pause on Errors' under the drop down menu ...

5년 초과 전 | 0

| 수락됨

답변 있음
2D array in for loop problem
Unlike Python, C, C++ and other programming languages, Matlab starts the matrix index with 1 instead of 0. So just change the f...

5년 초과 전 | 1

| 수락됨

답변 있음
problem with xlswrite windows
I think the filename doesn't allow ':' if you use datestr(now) Try using sprintf('%02.0f',clock) Besides, I would suggest us...

5년 초과 전 | 0

| 수락됨

답변 있음
Training data in ANN (Artificial Neural Network) code
I noticed that you have saved the data in a new sheet in Excel, is that intended? If not, you can simply delete the empty sheet...

5년 초과 전 | 0

답변 있음
How to calculate this values manually.
Why not just refer to the documentations of the functions at: https://www.mathworks.com/help/matlab/ref/double.cos.html https:...

5년 초과 전 | 0

답변 있음
while loop until x amount correct digits
Have you considered using built-in function 'round'? https://www.mathworks.com/help/matlab/ref/round.html Then you can just do...

5년 초과 전 | 1

| 수락됨

답변 있음
How to save every iteration of for loop and plot
What is your numerical range of raw_image? If it is between 0 and 1, all elements of Mp2 will be 0, thus the while loop while c...

5년 초과 전 | 0