Answered
shifting column cell array of string into row
c = { 'a' ; 'b' ; 'c' ; 'd' ; .......... }; c=c';

10 years ago | 0

| accepted

Answered
How do i make m file to ask me for the data file?
<http://in.mathworks.com/help/matlab/ref/uigetfile.html open data file>

10 years ago | 1

| accepted

Answered
How to find the distance between two nodes in WSN using matlab?
X = [x1,y1;x2,y2]; d = pdist(X,'euclidean')

10 years ago | 0

Answered
How to rotate 3D plot
<http://in.mathworks.com/help/matlab/ref/rotate.html rotate example>

10 years ago | 0

Answered
I am getting this error when I am trying to plot the PUMA 560 robot: Undefined function 'arrow3' for input arguments of type 'double'. How can I solve this?
Make sure that in your working directory you have the function file named "arrow3"

10 years ago | 0

Answered
i have created a wireless sensor grid in matlab. i want to deploy the nodes in them. how can i do that? Please help
# For exaple consider 4*4 grid in matlab graph # by using the axis position randomly assign 100 nodes &100 enegry values # The...

10 years ago | 1

| accepted

Answered
How to install m_map toolbox in matlab 2009b?
while executing your code you need to add m_map functions directory in current directory

10 years ago | 0

| accepted

Answered
what type of input is given for ANN (neural network)?
we can divide the neural network classification into two parts.before going to neural network we need to Extract some features(E...

11 years ago | 1

| accepted

Answered
Explicit integral could not be found
<http://stackoverflow.com/questions/20082581/explicit-integral-could-not-be-found Explicit integral solution>

11 years ago | 0

| accepted

Question


access my pc completely from matlab
I would like to use matlab like a operating system .From the command window by using the matlab commands i wants to do the regul...

11 years ago | 1 answer | 0

1

answer

Answered
how to model matlab code for 14 bus system
<http://www.mathworks.com/matlabcentral/fileexchange/46067-ieee-14-bus-system> <http://www.ijert.org/view.php?id=3372&title=l...

11 years ago | 0

| accepted

Answered
can you please tell me how to remove any special characters from a string in MATLAB?
%for example s='matlab@123' s(isletter(s)==0)=[];

11 years ago | 2

Answered
how can i plot a circle intersect with a line
<http://in.mathworks.com/help/map/ref/circcirc.html circle intersect>

11 years ago | 0

| accepted

Answered
how get curvelet transform in MATLAB?
this link may help you <http://in.mathworks.com/matlabcentral/fileexchange/31559-ridgelet-and-curvelet-first-generation-toolbox ...

11 years ago | 0

Answered
Image cropping same portion from every side
n=50 [r c] = size(a)%%a is the input image eim = a(n:r-n,n:c-n) %%eim croped image

11 years ago | 0

Answered
How to store Image along with data in MySQL database?
<http://in.mathworks.com/help/database/ug/database.html Connect to database>

11 years ago | 0

Answered
Edge Detection in Binary Image
<http://www.code2learn.com/2011/02/edge-detection-of-image-using-matlab.html edge detection>

11 years ago | 0

Answered
how to display {m,n} with its answer for example {1,2}=2?
out = [ 2,3,5,6,3,7,3,2,4,5] count=0 for i= 1:4 for j=i+1:5 count = count+1; result=out(count);...

11 years ago | 0

| accepted

Answered
Passing Data between Scripts and Functions
1) load data from .m file (2) out1 = function1(arg11,arg12) %arg11,arg12 are the data from file which used within function 1 ...

11 years ago | 2

| accepted

Answered
my matlab code consist of errors.the error is that "the input arguement is undefined"in first line itself.how can i clear the errors .
before calling a function you need to assign values for the argument variables

11 years ago | 0

Solved


given 3 sides, find area of this triangle
1:3 -> 0; 3:5 -> 6

11 years ago

Answered
How to calculate total time of the video?
<http://in.mathworks.com/help/matlab/ref/mmfileinfo.html Duration>

11 years ago | 1

Answered
Area of multiple polygons
for i1=1:26 data =mycoordinates{i1}%coordinate of i1th polygon data(end+1,:) =data(1,:) for i=1:max(size(data))...

11 years ago | 0

| accepted

Answered
Index out of bound error in Matlab code ...Plz help....
clc clear all close all pause(0.05) N_all=[1:100]; Eb_no=[0:2:20]; for ii=1:length(Eb_no) N=N_all(ii)...

11 years ago | 0

| accepted

Answered
How to group data in different cluster
<http://in.mathworks.com/help/stats/kmeans.html k-means clustering>

11 years ago | 0

Answered
How to get area of a polygon in matlab
for example data =[4,10;9,7;11,2;2,2;4,10]%from excel file data(5,:) =data(1,:) for i=1:max(size(data))-1 s(i)=dat...

11 years ago | 0

| accepted

Answered
Want to learn simulink
<http://in.mathworks.com/help/physmod/elec/index.html Simelectronics>

11 years ago | 1

Answered
Want to learn simulink
<http://in.mathworks.com/help/simulink/getting-started-with-simulink.html Getting Started with Simulink>

11 years ago | 1

Answered
datetick : how to handle x Axis ?
set(gca,'xticklabel',{'May' ,'June' ,'July','August ','September ','October ','November'})

11 years ago | 0

Answered
how do i approach object tracking using image processing from a moving camera?
<http://in.mathworks.com/matlabcentral/fileexchange/27576-intellicam-real-time-moving-object-tracker- reference code>

11 years ago | 0

Load more