Aditya Adhikary
Followers: 0 Following: 0
CSE Undergraduate at IIIT Delhi (India)
Statistik
RANG
2.680
of 295.735
REPUTATION
22
BEITRÄGE
0 Fragen
10 Antworten
ANTWORTZUSTIMMUNG
0.00%
ERHALTENE STIMMEN
3
RANG
of 20.277
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
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:/...
mehr als 6 Jahre vor | 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...
mehr als 6 Jahre vor | 1
| akzeptiert
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...
mehr als 6 Jahre vor | 0
| akzeptiert
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...
mehr als 6 Jahre vor | 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...
mehr als 6 Jahre vor | 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.
mehr als 6 Jahre vor | 0
| akzeptiert
From 2D data to a 3D matrix
for i = 1:128 x = sprintf('7528_00%03d.txt',i); %load your file using x end
mehr als 6 Jahre vor | 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...
mehr als 6 Jahre vor | 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...
mehr als 6 Jahre vor | 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...
mehr als 6 Jahre vor | 1
| akzeptiert