photo

KARSH THARYANI


2018 年からアクティブ

Followers: 0   Following: 0

統計

All
  • Knowledgeable Level 1
  • First Answer
  • Solver

バッジを表示

Feeds

表示方法

回答済み
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 ...

約6年 前 | 0

回答済み
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...

約6年 前 | 0

回答済み
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 ...

約6年 前 | 0

| 採用済み

回答済み
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...

約6年 前 | 0

回答済み
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...

約6年 前 | 0

解決済み


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...

約6年 前

解決済み


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,...

約6年 前