photo

U B


Last seen: 6개월 전 2021년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

20 질문
2 답변

순위
34,331
of 300,765

평판
1

참여
20 질문
2 답변

답변 채택
75.0%

획득한 표
1

순위
 of 21,084

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 170,941

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Thankful Level 3

배지 보기

Feeds

보기 기준

질문


I want to plot many points in a single pointcare sphere.
This is the complete code i'm using. close all %% X=linspace(-5,5,500); Y=X; N=500; [x,y]=meshgrid(X,Y); %% r = (x.^2 +...

대략 1년 전 | 답변 수: 1 | 0

1

답변

질문


Non-integer value in for-loop
Probably a simple question but why non-integer value can't be used in for-loop. for i=0:.1:1 H(i)=10*i ; end H how do i...

대략 1년 전 | 답변 수: 2 | 0

2

답변

질문


How to use different colormaps for different function in mesh plot.
Using different colormaps for same axis is not logical but if I want want to somehow do it then what should I do? x = linspace(...

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

1

답변

질문


Slice of a 3D plot and projection of that function in a plane.
I'm trying to plot the mesh-plot of a Gaussian beam and slice through the centre. With it I'm tring to project the 3D plot on a ...

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

2

답변

질문


how to do a contour plot using function handle?
By creating meshgrid, I can do contour plot. T=linspace(0,2*pi,100); d = linspace(0,2*pi,100) ; [X,Y] = meshgrid(...

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

2

답변

질문


How to trace cluster of minimum points from a set of images and plot it in a graph?
I want to trace a cluster of minimum points from a set of images and plot it in a graph. You can acces the Image data. Im ...

대략 2년 전 | 답변 수: 1 | 0

1

답변

질문


How to do image segmentation of a beam?
How to use image segmentation to select the whole light beam? My final aim is to select the whole beam using image segmentat...

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

1

답변

질문


How to change the position of power of colorbar ?
The position of the power (10^-5)in the colorbar is in upper position. What do I do to bring it down to the bottom. [X,Y] = mes...

거의 3년 전 | 답변 수: 1 | 0

1

답변

질문


how to set different axis value?
I want to change the axis display value in a contour plot. xylim = 0.0055 ; N = 5; x = linspace(-xylim,xylim,N); y = x;...

거의 3년 전 | 답변 수: 3 | 0

3

답변

답변 있음
How to calculate the average value of selected row, column from a given matrix.
A = magic(5); n = A(2:4,1:3); % value I want to read M = mean2(n);

거의 3년 전 | 0

| 수락됨

질문


How to calculate the average value of selected row, column from a given matrix.
I have a matrix A =[ 16 2 3 13 16 ; 5 11 10 8 8 ; 9 7 6 12 5; 4 14 15 1 3] . I want t...

거의 3년 전 | 답변 수: 2 | 0

2

답변

답변 있음
How to use 2 variable in for loop?
Found the solution. rho = linspace(0,50,100); Nrho = length(rho); lambda = 50; k = 2*pi/lambda; S00_1 = sin(k.*rho); phi ...

3년 초과 전 | 0

| 수락됨

질문


How to use 2 variable in for loop?
I want to use 2 variable in for loop. If we consider a circle then in polar coordinate I've already used r variable. Now I want ...

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

1

답변

질문


How to extract corresponding x axis value in improfile.
How to extract the values of x axis in improfile? I'm using t=improfile(I,p1,p2) ; where p1 and p2 are the x,y coordinates fo...

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

1

답변

질문


How to add axis in a figure where I'm drawing lines.
This is the code I'm using. I = imread('figure251.png'); figure, imshow(I); colormap hot ; axis('on', 'image'); xticklabel...

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

1

답변

질문


To save an image using imwrite
I'm trying to save an image using imwrite as imwrite(Iy,'E:\UB\Manuscript\Trial\18th_Jan\Iy.png'); I've two intensity images I...

거의 4년 전 | 답변 수: 1 | 1

1

답변

질문


To identify the pixels with the highest intensity (index) value in a figure.
I want to identify the value/values which has the highest intensity value in a figure . To read an image, im using the below cod...

대략 4년 전 | 답변 수: 1 | 0

1

답변

질문


How to change the position of the exponential in a colorbar
I'm using MATLA R2020a to generate an image with colorbar. I'm including the colorbar using the below code. But the exponential ...

대략 4년 전 | 답변 수: 0 | 0

0

답변

질문


Intensity of each pixel frawn on an image
I want to find out the intensity of every pixel if i draw a line on one image. Im using the below code for drawing a line. Init...

대략 4년 전 | 답변 수: 2 | 0

2

답변

질문


croping of an image without imcrop
I am trying to crop an image using cordinate. I'm using the code given below. I = imread('figure23.png'); I2 = imcrop(I,[185 4...

대략 4년 전 | 답변 수: 1 | 0

1

답변

질문


Graphical representation of Polarisation of a light using Jones vector.
If I have a polarised light with Jones vector J = [a ; b], is it possible to get the graphical representation of the polarised s...

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

1

답변

질문


How to solve Index out of bounds because numel(A)=4
My aim is to generate the intensity profile for the output light passing through a polariser and an analyser for different angle...

거의 5년 전 | 답변 수: 1 | 0

1

답변