Réponse apportée
shifting column cell array of string into row
c = { 'a' ; 'b' ; 'c' ; 'd' ; .......... }; c=c';

environ 11 ans il y a | 0

| A accepté

Réponse apportée
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>

environ 11 ans il y a | 1

| A accepté

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

environ 11 ans il y a | 0

Réponse apportée
How to rotate 3D plot
<http://in.mathworks.com/help/matlab/ref/rotate.html rotate example>

environ 11 ans il y a | 0

Réponse apportée
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"

environ 11 ans il y a | 0

Réponse apportée
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...

environ 11 ans il y a | 1

| A accepté

Réponse apportée
How to install m_map toolbox in matlab 2009b?
while executing your code you need to add m_map functions directory in current directory

environ 11 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 11 ans il y a | 1

| A accepté

Réponse apportée
Explicit integral could not be found
<http://stackoverflow.com/questions/20082581/explicit-integral-could-not-be-found Explicit integral solution>

environ 11 ans il y a | 0

| A accepté

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

environ 11 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
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...

environ 11 ans il y a | 0

| A accepté

Réponse apportée
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)=[];

environ 11 ans il y a | 2

Réponse apportée
how can i plot a circle intersect with a line
<http://in.mathworks.com/help/map/ref/circcirc.html circle intersect>

plus de 11 ans il y a | 0

| A accepté

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

plus de 11 ans il y a | 0

Réponse apportée
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

plus de 11 ans il y a | 0

Réponse apportée
How to store Image along with data in MySQL database?
<http://in.mathworks.com/help/database/ug/database.html Connect to database>

plus de 11 ans il y a | 0

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

plus de 11 ans il y a | 0

Réponse apportée
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);...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
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 ...

plus de 11 ans il y a | 2

| A accepté

Réponse apportée
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

plus de 11 ans il y a | 0

A résolu


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

plus de 11 ans il y a

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

plus de 11 ans il y a | 1

Réponse apportée
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))...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
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)...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
How to group data in different cluster
<http://in.mathworks.com/help/stats/kmeans.html k-means clustering>

plus de 11 ans il y a | 0

Réponse apportée
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...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
Want to learn simulink
<http://in.mathworks.com/help/physmod/elec/index.html Simelectronics>

plus de 11 ans il y a | 1

Réponse apportée
Want to learn simulink
<http://in.mathworks.com/help/simulink/getting-started-with-simulink.html Getting Started with Simulink>

plus de 11 ans il y a | 1

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

plus de 11 ans il y a | 0

Réponse apportée
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>

plus de 11 ans il y a | 0

Charger plus