Answered
How to find intersecting points
Refer link below: http://www.csse.uwa.edu.au/~pk/research/MatlabFns/Projective/circleintersect.m Hope it helps!!!

meer dan 11 jaar ago | 0

Answered
Can i update the matlab workspace during simulation?
Check links below: http://www.mathworks.com/matlabcentral/newsreader/view_thread/242401 http://www.mathworks.com/matlabcen...

meer dan 11 jaar ago | 1

Answered
How i load a column of float numbers to a vector from a txt file
NumHeaders = 17; %for example NumDataLines = 1234; %for example ColNum = 8; %for example fmt = [ repmat(...

meer dan 11 jaar ago | 0

Answered
Sequential logic or combinational logic
I think it is possible, take a look at the link below: http://www.businesswire.com/news/home/20121017005011/en/ADDING%C2%A0MU...

meer dan 11 jaar ago | 0

Answered
Can I multiply a Vector with a Matrix?
Change x11*X to x11.*X

meer dan 11 jaar ago | 1

| accepted

Answered
How can I add DEM.tif in Matlab?
Refer link below; http://www.mathworks.in/help/map/examples/un-projecting-a-digital-elevation-model-dem.html Hope it helps...

meer dan 11 jaar ago | 1

| accepted

Answered
what is 1.15 at this function
Refer link below: http://www.ehow.com/how_5212997_calculate-cumulative-probability.html Hope it helps!!!

meer dan 11 jaar ago | 0

Answered
sawtooth signal and moving averege filter
Refer below links, if not already gone through it: http://www.mathworks.com/matlabcentral/fileexchange/35925-moving-average-f...

meer dan 11 jaar ago | 0

Answered
Polyspace 2012a - compatibility windows 7 and Java libraries missing
For Problem No.1: Refer link below, if you have not already gone through it: http://www.mathworks.in/support/solutions/en/...

meer dan 11 jaar ago | 0

Answered
How to find max fuction with Genetic Algorithm
Refer link below: http://stackoverflow.com/questions/8956533/find-the-minimum-of-y-xx-using-genetic-algorithm-in-matlab Ho...

meer dan 11 jaar ago | 0

| accepted

Answered
Reading and writing in audio file
Refer link below: http://www.clear.rice.edu/elec301/Projects01/smokey_steg/time.html Hope it helps!!!

meer dan 11 jaar ago | 0

Answered
How to obtain PID controller co-effs as a function of time and o/p
Refer link below: http://www.mathworks.in/discovery/pid-control.html Hope it helps!!!

meer dan 11 jaar ago | 0

Answered
10 minutes average for four hours data
A=rand(720,1); A=reshape(A,240,3); A_OUT=mean(A(1:40,:))

meer dan 11 jaar ago | 0

Answered
How to view an 3D obj file in matlab
Refer below link: http://www.mathworks.com/matlabcentral/fileexchange/27982-wavefront-obj-toolbox/content/help%20file%20forma...

meer dan 11 jaar ago | 0

Answered
how to use profiler view
Refer link below: http://blogs.mathworks.com/community/2010/02/01/speeding-up-your-program-through-profiling/ Hope it help...

meer dan 11 jaar ago | 0

Question


Why 'str2double' is preferred over 'str2num?
Many times while writting matlab code, matlab forces to use 'str2double' function instead of 'str2num'. I searched a lot, but...

meer dan 11 jaar ago | 3 answers | 5

3

answers

Answered
Can these operations be vectorized?
Rather use 'onvmtx' function. http://www.mathworks.in/help/signal/ref/convmtx.html

meer dan 11 jaar ago | 0

Answered
what kind function of this? Fit Constant Probability?
enum ConstProb {Zero, One, Valid, Invalid};

meer dan 11 jaar ago | 1

Answered
to reduce te reading time of a pixel array
Refer this link: www.imt.liu.se/edu/courses/TBMI02/pdfs/Matlab_lesson.pdf

meer dan 11 jaar ago | 0

Answered
Data Acquisition Toolbox doesn't work with Simulink
Refer link below: http://home.hit.no/~hansha/documents/matlab/training/Data%2520Acquisition%2520in%2520MATLAB/Data%2520Acquis...

meer dan 11 jaar ago | 0

Answered
10 minutes average for four hours data
A=rand(960,1); A=reshape(A,240,4); A_OUT=mean(A(1:40,:))

meer dan 11 jaar ago | 0

| accepted

Answered
10 minutes average for four hours data
A=rand(960,1); A=reshape(A,240,4); A_OUT=mean(A(1:40,:))

meer dan 11 jaar ago | 0

Answered
how to find time elapsed to execute the part of a program
Try cputime function instead. Also tic & toc will provide correct results if no other applications are running simulataneouse...

meer dan 11 jaar ago | 0

| accepted

Answered
i want to transmit and receive audio or wave file ..
Refer below link: http://www.mathworks.in/help/comm/ref/comm.bpskmodulatorclass.html http://www.mathworks.in/help/comm/ref...

meer dan 11 jaar ago | 0

Answered
Matlab R2008a doesn't open files outside its path any more ?
Try to run matlab in admin mode, by right clicking matlab icon & selcting 'Run as administrator' button. Hope it helps!!!

meer dan 11 jaar ago | 0

Answered
Need an example how to use Spectral Subtraction
Refer below link: http://www.mathworks.com/matlabcentral/fileexchange/7675-boll-spectral-subtraction Hope it helps!!!

meer dan 11 jaar ago | 0

Answered
Returning which button was pressed.
Refer below link: http://www.mathworks.in/support/solutions/en/data/1-15NBP/?solution=1-15NBP Hope it helps!!!

meer dan 11 jaar ago | 0

Answered
How I can change the certain pixel values in gray scale image?
X=imread('1.jpg') % My image was color so was MxNxP Xc=X(:,:,1) % crateda grayscale image MxN Xc(14,20) %...

meer dan 11 jaar ago | 0

| accepted

Answered
How can I select all the nonzero elements of a matrix and give out a matrix?
Try this: MatrixAo = MatrixA(MatrixA~=0)

meer dan 11 jaar ago | 0

Load more