photo

Abhishek Gangwar

MathWorks

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

Followers: 0   Following: 0

메시지

통계

All
MATLAB Answers

0 질문
9 답변

Cody

0 문제
35 답안

순위
2,942
of 301,517

평판
20

참여
0 질문
9 답변

답변 채택
0.00%

획득한 표
2

순위
 of 21,314

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
15,871
of 175,060

참여
0 문제
35 답안

점수
360

배지 수
1

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Knowledgeable Level 2
  • First Answer
  • Solver

배지 보기

Feeds

보기 기준

답변 있음
Image shows with imshowpair, but not with imshow
Your binary image should be 2 dimensional, if it is not convert the original image into gray cale and then create binary image, ...

5년 초과 전 | 0

| 수락됨

답변 있음
How to call python in matlab
Check if your python executable path is correct? Set the python environment with correct python executalbe first it will show ...

거의 6년 전 | 0

답변 있음
What is the benefit of learning Matlab for Engineers?
Matlab provides you a huge number of toolboxes to plot graphs, visualize complex datasets. You can use matlab to perform complex...

거의 6년 전 | 0

답변 있음
Which image is not like the others?
Compute difference of two images using "imabsdiff()" function, output of this function would be a matrix if both images are same...

거의 6년 전 | 0

| 수락됨

답변 있음
What does A=A((x:y,:) mean?
Okay, so first check that you had defined matrix 'A' in you code before trying to access it and use single paranthesis for index...

거의 6년 전 | 0

답변 있음
Understanding the output returned by anonymous function
Yes, you are right, you are invoking the function 'f' correctly but the problem is function 'f' is returning only one output whi...

거의 6년 전 | 0

| 수락됨

답변 있음
generate random sample for linear regression
You can generate random values for x1, x2 using "randperm()" function and then find out corresponding 'y' values, x1 = randperm...

거의 6년 전 | 0

답변 있음
Disp() not showing the value of the variable
The reason is, one of your argument is a decimal number and the other one is a string, try to convert decimal number into string...

거의 6년 전 | 2

| 수락됨

답변 있음
Plot a figure with 2 x-axis and a single y-axis.
clc; clear; close all; x1 = 1:40; y1 = x1.^2; line(x1,y1,'Color','r') ax1 = gca; % current axes ax1.XColor = 'r'; ax1.YC...

거의 6년 전 | 0