Aditya Adhikary
自 2018 起处于活动状态
Followers: 0 Following: 0
CSE Undergraduate at IIIT Delhi (India)
Feeds
已回答
How to recognition of rectangle and counting numbers of rectangle in image
You may want to use <https://www.mathworks.com/help/images/ref/hough.html Hough Transform> to detect lines , or use the <https:/...
How to recognition of rectangle and counting numbers of rectangle in image
You may want to use <https://www.mathworks.com/help/images/ref/hough.html Hough Transform> to detect lines , or use the <https:/...
6 years 前 | 0
已回答
how to select a seed point in clustering?
For k-means, you can specify the seed using the 'Start' parameter. If you specify a numeric matrix while using this parameter, i...
how to select a seed point in clustering?
For k-means, you can specify the seed using the 'Start' parameter. If you specify a numeric matrix while using this parameter, i...
6 years 前 | 1
| 已接受
已回答
How can i somehow autofill black-spots in an RGB image.
These may help: <https://www.mathworks.com/help/images/ref/imfill.html imfill> and <https://www.mathworks.com/help/images/ref/re...
How can i somehow autofill black-spots in an RGB image.
These may help: <https://www.mathworks.com/help/images/ref/imfill.html imfill> and <https://www.mathworks.com/help/images/ref/re...
6 years 前 | 0
| 已接受
已回答
Assigned clusters to new data
K-means clustering as such is an unsupervised method. From what I gather, you would like to learn the cluster centroids using th...
Assigned clusters to new data
K-means clustering as such is an unsupervised method. From what I gather, you would like to learn the cluster centroids using th...
6 years 前 | 0
已回答
how to build the equation by simulink block
Try using <https://www.mathworks.com/help/simulink/slref/mathfunction.html power> blocks. Define constants fi, x_star and also s...
how to build the equation by simulink block
Try using <https://www.mathworks.com/help/simulink/slref/mathfunction.html power> blocks. Define constants fi, x_star and also s...
6 years 前 | 0
已回答
How can I generate report in ms word and pdf from Matlab?
Check the <https://www.mathworks.com/help/matlab/ref/publish.html documentation> on publishing reports from matlab files.
How can I generate report in ms word and pdf from Matlab?
Check the <https://www.mathworks.com/help/matlab/ref/publish.html documentation> on publishing reports from matlab files.
6 years 前 | 0
| 已接受
已回答
From 2D data to a 3D matrix
for i = 1:128 x = sprintf('7528_00%03d.txt',i); %load your file using x end
From 2D data to a 3D matrix
for i = 1:128 x = sprintf('7528_00%03d.txt',i); %load your file using x end
6 years 前 | 0
已回答
how to plot colored cube 3d contour graph?
For an explanation of the following code, look at <https://www.mathworks.com/help/matlab/visualize/multifaceted-patches.html Mul...
how to plot colored cube 3d contour graph?
For an explanation of the following code, look at <https://www.mathworks.com/help/matlab/visualize/multifaceted-patches.html Mul...
6 years 前 | 0
已回答
Combining cell array and double vector into sprintf
Another answer based on your code (not caring about efficiency): coeffVals = [1,2,3]; coeffNames = {'a1','b1','c1'}; coe...
Combining cell array and double vector into sprintf
Another answer based on your code (not caring about efficiency): coeffVals = [1,2,3]; coeffNames = {'a1','b1','c1'}; coe...
6 years 前 | 1
已回答
Issue with 3d plotting and writing to file
Assuming that you need to get 20 coordinate points for x and 40 for y, you can use the <https://www.mathworks.com/help/matlab/re...
Issue with 3d plotting and writing to file
Assuming that you need to get 20 coordinate points for x and 40 for y, you can use the <https://www.mathworks.com/help/matlab/re...
6 years 前 | 1
| 已接受