답변 있음
Loop and input question
%If you are trying to find the sum of all odd no's between 1 and s (i.e s is your limit ) prompt = 'What is the value o...

거의 9년 전 | 0

답변 있음
Summing specific values in arrays
a = [2,3;4,5;2,5;1,5;2,1;1,1] prompt = 'Enter any no fom first column '; x = input(prompt) r = find(a(1:end,1)==x) ...

거의 9년 전 | 1

답변 있음
Read DICOM files and create a Montage
s = dicomread('IM-0001-0001.dcm');%read one image to find the size [r c] = size(s); X = repmat(double(0), [r c 1 9]); ...

거의 9년 전 | 3

| 수락됨

답변 있음
help with for loop matrix size
In the line rho(1)= po*M/(R*To); you define that size of rho is 1.But you are accessing the values from 1 to 480.So it says that...

거의 9년 전 | 0

답변 있음
How can save to a matrix to txt file
dlmwrite('yourfile.txt',B,'-append','roffset',1,'delimiter',' ')

거의 9년 전 | 0

답변 있음
How to call the element in a unknown 2-dim matrix???^_^
a = randi(2,2);%%your matrix [r c] = size(a);%%returs no of rows and columns in the matrix a disp('-------the ...

거의 9년 전 | 0

| 수락됨

답변 있음
Where's the bug in the following codes?
yrfun = @(x)100*(x(2)-x(1)^2)^2+(1-x(1))^2; [z,val]=fminsearch(yrfun,[-10 10]);

거의 9년 전 | 0

답변 있음
i had a problem on finding the diagonal values of on my eigen vector
if your problem is to extracting the diagonal elements z = diag(D) is your solution

거의 9년 전 | 0

| 수락됨

답변 있음
Using a for loop to compute a Taylor series of sine?
%%sample code prompt = 'Enter angle value between 0 to 2pi? '; x = input(prompt) prompt = 'Enter the no of term...

거의 9년 전 | 0

| 수락됨

답변 있음
I worked on nested loop.
A_new = ones(46,24) A = rand(5000,24); A_new(1:23,:) = A(1,:); A_new(24:46,:) = A(2,:) ;

거의 9년 전 | 0

답변 있음
Hello Can any one give me a sample Program image matching based on color of an object? i really need it guys :( thank you so much for those who will help me. i will appreciated it so much :*
<http://in.mathworks.com/matlabcentral/answers/74168-color-matching-and-comparison Color matching and comparison>

거의 9년 전 | 0

| 수락됨

질문


Find all subset index of an array whose sums equal or nearest to a given target
* target = 700 * array = [200 250 340 100 500 360] <http://codereview.stackexchange.com/questions/36214/find-all-subsets-of...

거의 9년 전 | 답변 수: 1 | 0

1

답변

답변 있음
How to multiply a matrix by certain numbers?
A = [4 2 3 8;7 9 1 5;6 4 8 3]; B = [4;8;2] for i = 1:length(B) C(i,:) = A(i,:)*B(i) end

거의 9년 전 | 0

| 수락됨

답변 있음
How to combine both figures into one?
change the last line from figure(10), imagesc(abs(mapB1mp)), title('B1m /another') to hold on imagesc(abs(mapB1mp))

거의 9년 전 | 0

제출됨


Wireless Sensor Network SImulation
Simulation of WSN By Using matlab GUI

거의 9년 전 | 다운로드 수: 15 |

답변 있음
Problem with running m file
remove ; from end of each commands

거의 9년 전 | 0

| 수락됨

답변 있음
how to plot with function?
<http://in.mathworks.com/help/matlab/ref/print.html save to specific file format>

거의 9년 전 | 0

답변 있음
Problem with the size of randperm(n)
set iteration as 1:max(size(rn))

거의 9년 전 | 0

| 수락됨

답변 있음
generate random number in between two numbers?
randi([5 10],1,5)

거의 9년 전 | 0

| 수락됨

답변 있음
constructing an adjacency list from incidence matrix
<http://in.mathworks.com/matlabcentral/fileexchange/30862-graph-incidence-matrix-to-adjacency-matrix incidence matrix to adjacen...

거의 9년 전 | 1

| 수락됨

답변 있음
Reading multiple excel files from a folder that has other types of files in addition to excel and putting the values in a cell array
sdirectory = 'D:\EXAMPLE_directory'; tifffiles = dir([sdirectory '/*.xlsx']); sd = length(tifffiles); for k = 1:numel...

거의 9년 전 | 0

| 수락됨

답변 있음
How do I export a machine learning model to use later on my own computer or someone else's?
<http://in.mathworks.com/matlabcentral/answers/23369-generating-standalone-executable-file-using-matlab-coder Standalone Executa...

거의 9년 전 | 0

| 수락됨

답변 있음
Problem with Psat (Power System Analysis Toolbox) launching
<PSAT%20installation http://faraday1.ucd.ie/archive/psat/brieftutorial.pdf>

대략 9년 전 | 0

답변 있음
how can I get started with feature selection algorithms using matlab?
feature is a value calculated by using some formula/algorithm.So be clear in each and every terms used in the algorithm and then...

대략 9년 전 | 0

문제를 풀었습니다


How to find the position of an element in a vector without using the find function
Write a function posX=findPosition(x,y) where x is a vector and y is the number that you are searching for. Examples: fin...

대략 9년 전

문제를 풀었습니다


Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...

대략 9년 전

답변 있음
multiple feature for prediction time series data with libsvm
<http://stackoverflow.com/questions/8953326/multi-class-svm-one-versus-all Multi-Class SVM>

대략 9년 전 | 0

답변 있음
eeg data classification using svm classifier
<http://in.mathworks.com/help/stats/support-vector-machines.html matlab SVM>

대략 9년 전 | 0

답변 있음
Demonstrate view few image processing in MATLAB
<chrome-extension://pnjmpgnkjenppejbgondoebklinmkmmf/newtab/override_newtab.html image processing Examples>

대략 9년 전 | 0

| 수락됨

답변 있음
image searching and retrieval by Matlab
<http://www.engineersgarage.com/contribution/content-based-image-retrieval-matlab-project?page=12 reference>

대략 9년 전 | 0

| 수락됨

더 보기