photo

Aditya Verma


Last seen: 거의 5년 전 2020년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

0 질문
10 답변

순위
2,721
of 300,381

평판
22

참여
0 질문
10 답변

답변 채택
0.00%

획득한 표
3

순위
 of 20,941

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 168,477

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Knowledgeable Level 2
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
Plotting Piece-wise like function
You can use hold to plot multiple graphs in the same figure. This way you can graph any picewise function: x1 = 0:3; x2 = 3:4;...

5년 초과 전 | 0

| 수락됨

답변 있음
1-d array plotted with imagesc shown as 2-d
You can change the size of the current figure (gcf) using the position propery: imagesc(1:10); set(gcf,'position',[0, 0, 500, ...

5년 초과 전 | 0

답변 있음
intensity value of the pixel located
Your image is stored as a matrix in MATLAB. So, for getting the pixel intensity value you need to read the image: image_mat = r...

5년 초과 전 | 1

| 수락됨

답변 있음
how can i convert following script into c coding
Hi! You can check out MATLAB Coder, it allows you to generate C/C++ code from MATLAB code. However it doesn't support all MATLA...

5년 초과 전 | 1

| 수락됨

답변 있음
How to export imaris image to MATLAB?
Hi! While MATLAB doesn't support imaris file format out of the box (which can be check from here), you can use the implementati...

5년 초과 전 | 0

답변 있음
Work with data just in selected paths
Hi! Could you check in the lists of all search paths if you have accidently added those subfolders? You can check it using the ...

5년 초과 전 | 0

답변 있음
Porting code to c++
Hello! You can try the famous OpenCV library. It also has inbuilt constructs to parallelize your code. It uses the BSD 3-Clause...

5년 초과 전 | 0

답변 있음
Setting Axis scale steps
Hello, You can set the x-axis ticks using xticks function: x = 0:0.1:5; plot(x, sin(x)); xticks(0:0.83:5); xlim([0 5]); ...

5년 초과 전 | 0

| 수락됨

답변 있음
How to write piecewise function in matlab for the following function. Please give me matlab code.
Hello there! You can code a piecewise function using conditional statements. More specifically, using if-else clause in this ca...

5년 초과 전 | 1

답변 있음
How to repeat whole coding by increasing value of variable
Hi, you can use functions to avoid code repetition: for bus_value = 20:10:60 [ploss, location1, location2, real1, real2, r...

5년 초과 전 | 0