Community Profile

photo

MHN


2016년부터 활동

Followers: 0   Following: 0

연락

통계

  • Thankful Level 1
  • Revival Level 1
  • Knowledgeable Level 4
  • First Answer

배지 보기

Feeds

보기 기준

질문


statistical significance at the 95% confidence level
Hello, I have two learning algorithm LA1 and LA2. I ran these two learning algorithms on 5 datasets and got 10 numbers (5 fo...

7년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
Assigning a new data point to a cluster in hierarchical clustering
If you know your maxclust is 2, then just use 2-means. Hierarchical clustering and linkage will give you an insight about the nu...

거의 8년 전 | 0

| 수락됨

답변 있음
cannot create mat file.
Just use save 'filename'

거의 8년 전 | 0

답변 있음
Use equation in for loop
data = rand(100,2); % just for an example [nrows,ncols] = size(data); total = 0; for m=1:nrows-1 total...

거의 8년 전 | 1

| 수락됨

답변 있음
"solve" bug?
It gives you the first integer number that meets the criteria (f<0) which is -5 (for -4 you should write f<=0). Matlab is not a ...

거의 8년 전 | 0

답변 있음
I am trying to write a matlab code to check a solved 9X9 sudoku problem. I can't seem to get it to work. Any ideas where I went wrong?
It works fine ! m = randi(9,9,9); valid = (size(m) == [9, 9]); if (~valid) fprintf('Sudoku: size must be 9x9...

대략 8년 전 | 0

답변 있음
How could I make these functions as a loop?
It is not a good idea to use this kind of coding, but the following code will do what you want. for i = 1:5 a = s...

대략 8년 전 | 0

| 수락됨

답변 있음
printf newline not working
I could not understand the question. You have 20 words that you would like to put a new line after each of them, is it correct? ...

대략 8년 전 | 0

답변 있음
How to plot data point by point and erasing the last one?
I have done pretty much animated plot with Matlab, What you need is a little trick !! y=[1,3,2,3,3]; n=numel(y) figur...

대략 8년 전 | 0

| 수락됨

답변 있음
How do I do weighted classification?
It depends on your evaluation criteria and does not have a straight forward answer. I suggest you to try them and see which give...

대략 8년 전 | 0

답변 있음
How do I do weighted classification?
You can easily change 'prior' to 'uniform'. 'uniform' sets all class probabilities equal. The default value is 'empirical' which...

대략 8년 전 | 0

| 수락됨

답변 있음
Why i got different standard deviation values when i apply these command for matrix called as M?
The differences are just on the border of the image. The reason is that colfilt and stdfilt handle the border pixels differentl...

대략 8년 전 | 0

| 수락됨

답변 있음
why is an error in this matrix??
Your vectors in c1 are m*1 matrices, so you should make n*1 zeros matrices instead of 1*n. M_column=cell2mat(cellfun(@(x)[z...

대략 8년 전 | 0

| 수락됨

답변 있음
Finding the first zero element in a row and fill the entire row with the last non zero element
It is my fastest way so far. Adding one column of zero at the end, finding the minimum of each row (which would be the first zer...

대략 8년 전 | 0

질문


Finding the first zero element in a row and fill the entire row with the last non zero element
I have an m*n matrix which has only zeros and natural numbers. If there is a zero in a row, all the remaining elements after the...

대략 8년 전 | 답변 수: 2 | 0

2

답변

답변 있음
What would I need to make 'i' allow all matrices?
prompt = 'Give a matrix of 4x4: '; flag = 0; while flag ==0 x = input(prompt); [m,n] = size(x); if ...

대략 8년 전 | 0

답변 있음
What would I need to make 'i' allow all matrices?
prompt = 'Give a matrix of 4x4: '; x = input(prompt); [m,n] = size(x); if m~=4 | n~= 4 disp('The matrix is not...

대략 8년 전 | 0

| 수락됨

답변 있음
Hi i am getting Index out of bounds error pls help me solve it
So, you should not attempt to get b(1,59) when the size of b is (93,58) !!!

대략 8년 전 | 0

답변 있음
trying to use 'readtable' command to read txt, file, but I couldn't specify the 'range' option
Yes, Range is for spreadsheet files only.

대략 8년 전 | 1

| 수락됨

답변 있음
How to delete elements from cell arrays?
l(to_delete,:) = [];

대략 8년 전 | 0

답변 있음
How can I scan a text file in order to read a specific number in a line?
See the attachment for test.txt and put it in the current directory. fileID = fopen('test.txt'); A = textscan(fileI...

대략 8년 전 | 0

답변 있음
Can the difference between impulse(sys) and plot(sys) be graphed?
Just feed a subtracter block with them (and abs block if you need the absolute value) and plot the difference. Just note that th...

대략 8년 전 | 0

답변 있음
Data filtering one-second averages
Load your data in a matrix which the name is Data, then EndSecond = 3; NewData = zeros(EndSecond+1,5); for i = 0:En...

대략 8년 전 | 0

| 수락됨

답변 있음
How to do subplot loop?
M = rand(100,72); % make 72 variable to plot for i=1:24 figure for j=1:3 subplot(1,3,j) ...

대략 8년 전 | 2

답변 있음
How to save all data from a loop in excel?
Instead of writing each column in an excel file (which takes a lot of time, since each time you should get access to memory) it ...

대략 8년 전 | 0

| 수락됨

답변 있음
store data from for cycle
you should simply use two for: m =5; n=7; Mat = zeros(m,n); for i = 1:m for j = 1:n Mat(...

대략 8년 전 | 0

| 수락됨

답변 있음
How can I delete legends from a plot or subplot?
Open your figure and type in the command line: legend('hide') If you have many figures, put this in a loop and save the ...

대략 8년 전 | 0

답변 있음
"Subscripted assignment dimension mismatch" when using a for loop
There is a mismatch here: flipud(y(i-L+1:i,1))' * g(:,it); You have a L*1 matrix (flipud(y(i-L+1:i,1))) and you are tran...

대략 8년 전 | 1

| 수락됨

답변 있음
How do i tell if an image has a shadow or not?
It is like someone come here and ask you how can I do face detection with Matlab! There are 88,500 of papers (search it in googl...

대략 8년 전 | 0

더 보기