
waqas
Statistics
23 질문
13 답변
0 문제
22 해답
순위
1,577
of 262,705
평판
30
참여
23 질문
13 답변
답변 채택
69.57%
획득한 표
3
순위
13,656
of 113,693
참여
0 문제
22 해답
점수
247
배지 수
1
참여
0 게시물
참여
0 공개 채널
평균 평점
참여
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
질문
How to make a rectangular shape with inner boundary having the value of 1 and outer boundary a value of 0?
Hi, I am trying to make a rectangular shape with inner boundary value set as one and outer boundary value set as zero. Ideally...
8달 전 | 답변 수: 1 | 0
1
답변질문
How to generate Q4 element mesh in selected area?
Hi, I have a region ( variable 'nmask' in the .MAT file) on which I want to generate a Q4 mesh. In my current implementation, ...
11달 전 | 답변 수: 1 | 0
1
답변질문
Removing values from surf?
I am plotting surf plot from the data (.mat file attached), but, there is data where Z values are zero which is ruining the plot...
1년 이상 전 | 답변 수: 1 | 0
1
답변How to find what percentage of image an object covers
im = im2bw(imread('image.jpeg')); imshow(bw) whitearea = bwarea(bw); blackarea = bwarea(~bw); conversion to black and white...
1년 이상 전 | 0
How to record/run the result 100 times?
May be knowing what OMEGA is would help us understanding what the code is doing. From current code, you can implement a second...
1년 이상 전 | 0
| 수락됨
질문
Finding crack path using image processing
I have previously asked a question of this forum (link to it) where I want to find the path of a crack using image processing. H...
1년 이상 전 | 답변 수: 1 | 0
1
답변질문
Interpolating data to find the values at NaN locations in the region.
I have a field which, when I plot, results in NaN values in between the known values. I want to interpolate the values on these ...
1년 이상 전 | 답변 수: 1 | 0
1
답변질문
Finding the particular path using image processing
Hi, I need to find the path from the attached displacement field attached as .MAT file. My code was working on other data set...
2년 이하 전 | 답변 수: 1 | 0
1
답변질문
Indexing in fields of a struct
Hi, in the attached .MAT file, I have a struct partitionsInfo in which I want to read partitionsInfo.frames using indexing to ...
약 2년 전 | 답변 수: 1 | 0
1
답변질문
Shifting XY- coordinate system (normally known as left-hand coordinate system) from top left to conventional (right handed) coordinate system?
Hi, I want to transform my matrix origin from top left corner (showed in Red color in the plot) to bottom left corner (showed ...
약 2년 전 | 답변 수: 1 | 0
1
답변Extract vector from math file
You can define the variable which you want to extract: load('ABCdepobv.mat','B'); More details on saving and loading .MAT fil...
약 2년 전 | 0
How can I export this as a vector image?
Use export_fig function. Check the link here. I would suggest the add set(gcf,'color','w') before using export_fig functio...
약 2년 전 | 0
Issues Creating Multiple Figures in Same Script
Wouldn't the following make more sense? position_1 = a1_sol.a0 + 0*t + a1_sol.a2*t^2 + a1_sol.a3*t^3 position_2 = a2_sol.a0 + ...
약 2년 전 | 0
| 수락됨
Is it a loop problem ?
The program can be stopped by using input to MatrixDimInput(iteration) %Modification in the function would result function ...
약 2년 전 | 0
| 수락됨
Divide time into milliseconds when input changes
Statment is not that clear but may be this is what you want to do: i = [1,10:10:20] % assuming your signal is repeating after ...
약 2년 전 | 0
Calculating distance between two points from a matrix in 2d and 3d
This would be the implementation of your formula. But, NaN would be a problem for you since 3rd and 4th columns are NaN and woul...
약 2년 전 | 1
| 수락됨
Smoothing 2D matrix
May be using this would work: Where A is 2D matrix and FilterSize can be changed to control smoothenig you want. imgaussfilt(A...
약 2년 전 | 0
how can i write a code with consecutive number between 0-100 and use this values inside my code?
Is this what you are looking for? x = 0.05 + (0.1-0.05).*[0:1:100]'; If you also want to control from which number (from 0:10...
약 2년 전 | 0
| 수락됨
질문
Getting meshgrid along different angles for data extraction from a matrix/image?
Hi, I have three point locations of a matrix which I want to use to get inclined meshgrid about the lines joining these point...
약 2년 전 | 답변 수: 1 | 0
1
답변How to plot 3D volume from concatenated images?
May be have a look at these links first! https://www.mathworks.com/help/matlab/volume-visualization.html, https://www.mathwork...
약 2년 전 | 0
질문
Selecting specific region around the known indices of a matrix.
Hi, I have a path around which I want to select 3 points above and 3 points below to acheive something similar to the picture. ...
3년 이하 전 | 답변 수: 1 | 0
1
답변질문
Rotating different parts of the same matrix at different angles using pol2cart and cart2pol.
Hi, I have a code where I can remove a certain region which I am not interested in but in the current configuration, I am usin...
3년 이하 전 | 답변 수: 0 | 0
0
답변질문
Plotting pcolor plot on an image at a particular area.
Hi, I have done some analysis on a particular region of an image which I now want to plot on the over the image. Following ima...
3년 이하 전 | 답변 수: 2 | 0
2
답변질문
How to set lower and upper bound for only one of the output variable in lsqnonlin?
Hi, In the documentation of lsqnonlin, following statement is written: x = lsqnonlin(fun,x0,lb,ub) defines a set of lower an...
3년 이하 전 | 답변 수: 1 | 0
1
답변질문
Masking an array back to a selected region in a Matrix
Hi, I have a column vector which I need to insert back to the a matrix(Attached in .mat file). The variable region has logical...
3년 이하 전 | 답변 수: 1 | 0
1
답변질문
Fitting the data so that one a single continuous line is achived
Hi, I have following line that I want to smooth out so that only one point will be there in one column: mat file for the d...
3년 이하 전 | 답변 수: 1 | 0
1
답변질문
Extracting coordinates values for the line.
Hi, I want to extract the coordinates for the white points along the main line where I am getting bit of noise around with ad...
3년 이하 전 | 답변 수: 1 | 0
1
답변질문
Optimizing coefficients of an asymptotic series using lsqnonlin.
Hi, I am trying to find the coefficients of an asymtotic series using experimental and simulation data with lsqnonlin but the ...
3년 이하 전 | 답변 수: 1 | 0
1
답변How to apply the same function on different rows of a vector?
If I got the question right, this is how it should work: andr = randn(521,1) andrn = 1/100*andr(521:-20:1) % you can use 1/10...
3년 이하 전 | 1
| 수락됨
질문
Selecting data within a particular shape from a matrix.
Hi, I want to select data around point [169,547] in the attached v variable. Attached is the figure of the shape in which I w...
3년 이하 전 | 답변 수: 1 | 0