photo

KARSH THARYANI


Con actividad desde 2018

Followers: 0   Following: 0

Estadística

All
  • Knowledgeable Level 1
  • First Answer
  • Solver

Ver insignias

Feeds

Ver por

Respondida
How visualize data in matlab
Hi, Please follow the examples <https://www.mathworks.com/help/matlab/ref/load.html?searchHighlight=load&s_tid=doc_srchtitle ...

alrededor de 6 años hace | 0

Respondida
How do I select a rectangular region of interest with a hole in it
Given an image, you can make the inner region as zero. Apply the Gaussian (or your motion blur filter). Then, on this image, co...

alrededor de 6 años hace | 0

Respondida
applying multiple colormaps on one barchart using a for loop
You can use the CData property of a bar graph and then add a color to it. <https://www.mathworks.com/help/matlab/ref/bar.html ...

alrededor de 6 años hace | 0

| aceptada

Respondida
Question about regionprops3 'Orientation' angles / origin
The co-ordinate system based on your description is not right handed. If your x is towards the left and increasing, the y is inc...

alrededor de 6 años hace | 0

Respondida
What those permute numbers mean?
The Img is supposedly an array of dimension a X b X c X d. permute() will change the access order to access the elements. So, if...

alrededor de 6 años hace | 0

Resuelto


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

alrededor de 6 años hace

Resuelto


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

alrededor de 6 años hace