답변 있음
ask about controller system
* for example consider a cooling system. * The cooling system takes temperature as input(i.e. x=temperature) * The output of t...

대략 8년 전 | 0

| 수락됨

답변 있음
Select base station in wsn
If you have 10 nodes then possibly you will have 10 energy values associated with the nodes.So get the index of maximum value.Th...

대략 8년 전 | 0

| 수락됨

답변 있음
Apply the image processing technique that can divided it to two equal areas.
[r c] = size(i1);% i1 is the input image i1(:,round(c/2):round(c/2)+1)=0; imshow(i1)

대략 8년 전 | 0

답변 있음
Convert Excel date to use in MATLAB
<http://in.mathworks.com/help/matlab/ref/datenum.html datenum Convert date text format into numeric value>

대략 8년 전 | 0

답변 있음
which toolbox do I need
For interfacing USB devices you need <http://in.mathworks.com/products/instrument/supported/usb.html Instrument Control Toolbox>...

대략 8년 전 | 1

답변 있음
Particle Swarm - Additional Arguments
You cannot add additional arguments to matlab predefined functions. <http://in.mathworks.com/help/gads/particleswarm.html click ...

대략 8년 전 | 0

답변 있음
Problem adding components of a vector using a while loop
replace b = b+k(x) into b = b+x(k)

대략 8년 전 | 0

답변 있음
how to change default radiobutton ?
*Example code* function my handles.FigureH = figure; handles.radio(1) = uicontrol('Style', 'radiobutton', ... ...

대략 8년 전 | 0

답변 있음
How to save outputs of a function to different matrixs
The function 'xyz' returns the vector 'F' which has three elements.So follow the below steps F =fsolve('fxyz',[-1,1,-1]); ...

대략 8년 전 | 0

| 수락됨

답변 있음
How to read .dat files in matlab?
<http://in.mathworks.com/matlabcentral/answers/64787-how-to-load-dat-or-even-txt-files-into-matlab-workspace load .dat (or even ...

대략 8년 전 | 0

답변 있음
if i have matrix and i want to do this ?
clear all clc Matrix_row = [2 4 2 0 0 3 6 0 0 0 ...

대략 8년 전 | 0

| 수락됨

답변 있음
Following function works as .m file but does not produce any output as function file
The input parameters highly influence the output.So try with different input values .then you can understand the exact issue.

대략 8년 전 | 0

답변 있음
how to obtain a bandpass filter from a low pass filter and a high pass filter?
<http://www.allaboutcircuits.com/textbook/alternating-current/chpt-8/band-pass-filters/ band pass filter reference>

8년 초과 전 | 0

답변 있음
How can I input a video in simulink for processing???
<http://in.mathworks.com/help/vision/ref/frommultimediafile.html From Multimedia File block used to import video signal and> <ht...

8년 초과 전 | 0

답변 있음
How can i upload financial time series from an excel file?
<http://in.mathworks.com/help/matlab/import_export/ways-to-import-spreadsheets.html Ways to Import Spreadsheets>

8년 초과 전 | 0

답변 있음
transfer data from Matlab to Excel
Its not necessary to specify the end cell no.Only starting cell number is enough. test_data=xlswrite(file_name_data,results...

8년 초과 전 | 0

| 수락됨

답변 있음
How to use variables in a matrix?
Replace line no 11 to A = double(subs(A,h,1))

8년 초과 전 | 0

답변 있음
importing and calculation from excel to matlab
you cannot use the column title directly.You have to use the index something like "Rawdata(16:end,3)".Which states that in Rawda...

8년 초과 전 | 0

| 수락됨

답변 있음
implement back button in matlab
<http://in.mathworks.com/matlabcentral/answers/146215-pass-data-between-gui-s Pass Data between Gui`s>

8년 초과 전 | 0

답변 있음
How to use num2cell?
third column data is already in cell.So simply use the below c = production(:,3)

8년 초과 전 | 0

답변 있음
Is it possible to detect face using vision.CascadeObjectDetector with round annotation? I am quite new in matlab could you show example?
<http://www.bogotobogo.com/Matlab/Matlab_Tutorial_Video_Processing_2_Face_Detection_CamShift_Tracking.php Face detection example...

8년 초과 전 | 0

답변 있음
How can I create a protected model with a mask ?
<http://in.mathworks.com/help/simulink/examples/protected-models-for-model-reference.html create and use a protected model :-->r...

8년 초과 전 | 0

답변 있음
How to perform this matrix manupulation.?
a = 1:20; n = 7; A = zeros(n,length(a)); n1 = 3 for it =1:n A(it,:)= circshift(a',n1) n1=n1-1; end

8년 초과 전 | 0

답변 있음
Using a GUI with Matlab
Define 'a' as global variable . <http://in.mathworks.com/matlabcentral/answers/88518-create-a-global-variable-in-a-gui (Create a...

8년 초과 전 | 0

| 수락됨

답변 있음
How to pass the variables from matlab workspace to python function, and run this python function in matlab
<http://algoholic.eu/matpy/ MATLAB extension for accessing Python>

8년 초과 전 | 0

답변 있음
How to get 1% of the image?
A = imread('ngc6543a.jpg'); n =size(A,2) Im_1per = A(:,1:round(n*0.01))%here 0.01 states that 1 % and it can be varied f...

8년 초과 전 | 0

| 수락됨

답변 있음
How to get data from MySQL database in matlab GUI
<http://in.mathworks.com/help/database/ug/importing-data-from-databases-into-matlab.html establish the connection and Import Dat...

8년 초과 전 | 0

답변 있음
For loop within a function?
I don't understand why do you going for for loop instead of using the inbuilt factorial function n = 3;%input value f =...

8년 초과 전 | 0

답변 있음
How to manipulate cell array of vectors (just numbers ) that are not same length?
* Your file has a cell array which contains different length data in each cell * if you wants to plot a specific cell data you ...

8년 초과 전 | 2

답변 있음
Why is nothing being stored in the "Workspace" after I run my code?
Possibly if you run the functions the variables will not stored in work space. Only the returned variables stored .If you not re...

8년 초과 전 | 1

더 보기