photo

Michal Dobai


2017년부터 활동

Followers: 0   Following: 0

메시지

통계

All
MATLAB Answers

1 질문
10 답변

Cody

0 문제
84 답안

순위
1,359
of 301,513

평판
53

참여
1 질문
10 답변

답변 채택
0.0%

획득한 표
11

순위
 of 21,312

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
7,944
of 175,031

참여
0 문제
84 답안

점수
960

배지 수
4

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • First Review
  • Cody5 Easy Master
  • Commenter
  • Knowledgeable Level 2
  • First Answer
  • Promoter
  • Solver

배지 보기

Feeds

보기 기준

답변 있음
I want to take difference of column A (first column in sheet_1) and column B (also first column in sheet_2). Output should be file C in workspace.
So you have excel file containing two sheets. And you want to: * subtract numbers in column A in |sheet_2| from numbers in co...

8년 초과 전 | 0

| 수락됨

답변 있음
Edit Field labels and edit field numeric loop
This might be one way to do it: First, you have to create new properties to hold handles of newly created controls: Typ...

8년 초과 전 | 2

답변 있음
How to two Y axies plot in app designer?
You can try this: plot(app.UIAxes,[1 2 3 4],[3 5 2 6],'-r'); hold(app.UIAxes); plot(app.UIAxes,[1 2 3 4],[4 6 3 7]...

8년 초과 전 | 0

답변 있음
What does 'imfuse' exactly do and how does it differ from 'imadd'?
*|<https://www.mathworks.com/help/images/ref/imfuse.html imfuse>|* can combine input images in several different ways. You can s...

8년 초과 전 | 0

| 수락됨

답변 있음
Import from Excel and exclude fully blank rows
Just change this: I = any(cellfun(@(x)... to this: I = all(cellfun(@(x)... Why? Let' have a closer look at your ...

8년 초과 전 | 0

| 수락됨

답변 있음
How to merge two images of different sizes ??
You can just index elements in bigger image and assign them values of smaller image. combinedImage = biggerImage; s = si...

8년 초과 전 | 3

| 수락됨

답변 있음
How to plot a surface-like plot when the data is not regularly spaced
How about this? [xi,yi] = meshgrid(0:0.01:10, 0:0.01:10); zi = griddata(demodata(:,1),demodata(:,2),demodata(:,3),xi...

8년 초과 전 | 1

| 수락됨

답변 있음
Vectors Must be the Same Length
It's a lot more clear to me now. Or at least I hope so |:)| _(reference to <https://www.mathworks.com/matlabcentral/answers/3721...

8년 초과 전 | 2

| 수락됨

답변 있음
Combine two images together
_This is answer to your <https://www.mathworks.com/matlabcentral/answers/372151-combine-two-images-together#comment_514612 comme...

8년 초과 전 | 0

| 수락됨

답변 있음
How to open a file .txt in MATLAB
OK. Let's say that you already have file named 'abc.txt' in your workspace and it looks like this: 1 2 3 4 5 6 7 8 9 ...

8년 초과 전 | 2

| 수락됨

질문


Is there any way to navigate through UITable (App Designer) cells with arrow keys?
I have a table in my GUI built in App Designer. Table is filled with some data (aprox. 10 cols and several hundred rows). User c...

8년 초과 전 | 답변 수: 0 | 1

0

답변