답변 있음
shifting column cell array of string into row
c = { 'a' ; 'b' ; 'c' ; 'd' ; .......... }; c=c';

대략 9년 전 | 0

| 수락됨

답변 있음
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>

대략 9년 전 | 1

| 수락됨

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

대략 9년 전 | 0

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

대략 9년 전 | 0

답변 있음
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"

대략 9년 전 | 0

답변 있음
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...

대략 9년 전 | 1

| 수락됨

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

대략 9년 전 | 0

| 수락됨

답변 있음
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...

대략 9년 전 | 1

| 수락됨

답변 있음
Explicit integral could not be found
<http://stackoverflow.com/questions/20082581/explicit-integral-could-not-be-found Explicit integral solution>

대략 9년 전 | 0

| 수락됨

질문


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

대략 9년 전 | 답변 수: 1 | 0

1

답변

답변 있음
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...

대략 9년 전 | 0

| 수락됨

답변 있음
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)=[];

대략 9년 전 | 2

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

9년 초과 전 | 0

| 수락됨

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

9년 초과 전 | 0

답변 있음
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

9년 초과 전 | 0

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

9년 초과 전 | 0

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

9년 초과 전 | 0

답변 있음
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);...

9년 초과 전 | 0

| 수락됨

답변 있음
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 ...

9년 초과 전 | 2

| 수락됨

답변 있음
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

9년 초과 전 | 0

문제를 풀었습니다


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

9년 초과 전

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

9년 초과 전 | 1

답변 있음
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))...

9년 초과 전 | 0

| 수락됨

답변 있음
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)...

9년 초과 전 | 0

| 수락됨

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

9년 초과 전 | 0

답변 있음
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...

9년 초과 전 | 0

| 수락됨

답변 있음
Want to learn simulink
<http://in.mathworks.com/help/physmod/elec/index.html Simelectronics>

9년 초과 전 | 1

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

9년 초과 전 | 1

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

9년 초과 전 | 0

답변 있음
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>

9년 초과 전 | 0

더 보기