Submitted


Hexagonal grid cellular network simulation
Simulation of cellular network using matlab GUI

10 years ago | 1 download |

3.57143 / 5

Answered
Add a 2D matrix to a 3D matrix in a specific location
l = length(A); d = 6;%dimension where we need to insert B New_A(:,:,1:d-1) = A(:,:,1:d-1); New_A(:,:,d) = B; New_A...

10 years ago | 0

Answered
Insert Moving Window Calculation
<https://www.delsys.com/KnowledgeCenter/NetHelp/default.htm?turl=HTMLDocuments%252Fcalculationsusingamovingwindow.htm may be thi...

10 years ago | 0

Answered
Parameters to be calculated for EEG signal
<http://in.mathworks.com/help/signal/examples/measuring-signal-similarities.html Measuring Signal Similarities>

10 years ago | 0

| accepted

Answered
How to get the screen width?
<http://www.mathworks.com/matlabcentral/answers/100792-in-matlab-how-do-i-obtain-information-about-my-screen-resolution-and-scre...

10 years ago | 1

Answered
input a 1*3 vector
<http://in.mathworks.com/matlabcentral/newsreader/view_thread/244228 inputting a vector>

10 years ago | 0

Answered
how to import jpeg image to graph background
<http://www.peteryu.ca/tutorials/matlab/plot_over_image_background Plot over an image background> <http://stackoverflow.com/que...

10 years ago | 0

| accepted

Answered
why do i get this error? 'Subscript indices must either be real positive integers or logicals.' thanks for any help!!!
<http://www.mathworks.com/matlabcentral/answers/102145-why-do-i-get-the-error-subscript-indices-must-either-be-real-positive-int...

10 years ago | 0

Answered
Is there a way to hide a specific uitab ?
set(uitab_handle,'Visible','off')

10 years ago | 0

Answered
can someone plz send me the code of fireworks algorithm?
<http://www.cil.pku.edu.cn/research/fa/ Fireworks Algorithm (FWA)>

10 years ago | 0

Answered
how to create 3D array
XY_coordinates = B(:,1:2)

10 years ago | 0

Answered
How to load .dat file in matlab?
<http://in.mathworks.com/matlabcentral/answers/79885-reading-dat-files-into-matlab Reading *.dat files into MATLAB>

10 years ago | 2

Answered
Is it possible to put xlabel text in two rows but with different font size?
<http://www.mathworks.com/matlabcentral/answers/93295-how-do-i-place-a-two-lined-title-x-label-y-label-or-z-label-on-my-plot How...

10 years ago | 1

Answered
Need Image database for Digital Image Processing Using MATLAB [2nd Ed.]
<http://www.imageprocessingplace.com/root_files_V3/image_databases.htm Images from Digital Image Processing Using MATLAB, 2nd ed...

10 years ago | 0

Answered
How to convert Lab to RGB image and its matlab code?
<http://robotics.stanford.edu/~ruzon/software/rgblab.html lab to rgb>

10 years ago | 0

Answered
Fetching data from DS18B20 Temperature sensor connected to arduino in matlab
<http://www.kellydominguez.com/interfacing-an-arduino-and-matlab/ Interfacing an Arduino and MATLAB>

10 years ago | 0

Answered
How do I access emails from an email server(gmail,...) using smtp ?
<http://blog.cordiner.net/2009/12/16/accessing-your-gmail-messages-in-matlab/ Accessing your Gmail messages>

10 years ago | 0

Answered
Is there anyone have the feature extraction stage (source code) for Arabic Optical Character Recognition?
<http://cdn.intechopen.com/pdfs-wm/4654.pdf Arabic Handwritten Character Recognition>

10 years ago | 0

Answered
How can I give degree symbol in XTicklabel in a bar graph?
set(gca,'XTicklabel',{'Neat PP'; [sprintf('0%c', char(176))];[sprintf('30%c', char(176))];[sprintf('45%c', char(176))];[sprint...

10 years ago | 0

| accepted

Answered
how to write a array of string into a text file and how to read it back?
file_name = 'namelist.txt' ; for i = 1:length(namelist) current_line = namelist{i}; dlmwrite(file_name, curre...

10 years ago | 0

| accepted

Answered
Error Message: Function definitions are not permitted in this context
Run this file

10 years ago | 0

| accepted

Answered
Exit while loop and close screens after 10 mouse presses
i = 0; f = figure; while i<11 w = waitforbuttonpress; if w == 0 i =i+1; if i ==10 ...

10 years ago | 0

| accepted

Answered
Why am I having so many errors?
Accel_of_G_exo = ((6.67e-11) * massplanet) / radius.^2 ; Weight_exo = Accel_of_G_exo * massspecimen ; ...

10 years ago | 0

Answered
Could someone explain about character segmentation and normalization for Optical character recognition? Complete with it's code?
<http://www.ele.uri.edu/~hansenj/projects/ele585/OCR/ Optical Character Recognition (OCR)>

10 years ago | 0

Answered
how to write in the text file?
clear FN1 = 'JDA'; z = '0', mn = 1:12; yr = 9:13; ext = '.ohh'; filename = fopen('JDAraw.txt','w'); ...

10 years ago | 0

Answered
How could I use Legend function in a for loop with an array?
%try like this s = {'L1','L2','L3'}; for i = 1:length(s) plot(rand(10,1),'color',rand(1,3)); hold on en...

10 years ago | 0

Answered
I want data like this
[num,txt,raw] = xlsread('date_1.xls'); req = raw(3:24,1:2); %selsect process data date and data req1 = cell2mat(raw(3:24...

10 years ago | 0

Answered
how to crop multiple files
for i = 1:length(fileList) I=dicomread(fileList{i}); %fileList contains names of all dicom images I=uint16(I); g=i...

10 years ago | 0

| accepted

Answered
I want data like this
d1 = datenum('01 June 2014'); d2 = datenum('01 June 2024'); dates = d1:d2; ur_days = day(dates');

10 years ago | 1

Answered
I want data like this
d1 = datenum('01 June 2014');%starting date d2 = datenum('08 July 2014');%End date dates = d1:d2;%Dates from starting to...

10 years ago | 1

Load more