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

etwa 11 Jahre vor | 0

| akzeptiert

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

etwa 11 Jahre vor | 1

| akzeptiert

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

etwa 11 Jahre vor | 0

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

etwa 11 Jahre vor | 0

Beantwortet
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"

etwa 11 Jahre vor | 0

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

etwa 11 Jahre vor | 1

| akzeptiert

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

etwa 11 Jahre vor | 0

| akzeptiert

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

etwa 11 Jahre vor | 1

| akzeptiert

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

etwa 11 Jahre vor | 0

| akzeptiert

Frage


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

etwa 11 Jahre vor | 1 Antwort | 0

1

Antwort

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

etwa 11 Jahre vor | 0

| akzeptiert

Beantwortet
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)=[];

mehr als 11 Jahre vor | 2

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

mehr als 11 Jahre vor | 0

| akzeptiert

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

mehr als 11 Jahre vor | 0

Beantwortet
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

mehr als 11 Jahre vor | 0

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

mehr als 11 Jahre vor | 0

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

mehr als 11 Jahre vor | 0

Beantwortet
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);...

mehr als 11 Jahre vor | 0

| akzeptiert

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

mehr als 11 Jahre vor | 2

| akzeptiert

Beantwortet
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

mehr als 11 Jahre vor | 0

Gelöst


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

mehr als 11 Jahre vor

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

mehr als 11 Jahre vor | 1

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

mehr als 11 Jahre vor | 0

| akzeptiert

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

mehr als 11 Jahre vor | 0

| akzeptiert

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

mehr als 11 Jahre vor | 0

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

mehr als 11 Jahre vor | 0

| akzeptiert

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

mehr als 11 Jahre vor | 1

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

mehr als 11 Jahre vor | 1

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

mehr als 11 Jahre vor | 0

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

mehr als 11 Jahre vor | 0

Mehr laden