photo

Sad Grad Student


2015년부터 활동

Followers: 0   Following: 0

메시지

통계학

  • Thankful Level 1
  • Knowledgeable Level 2
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
Please help, logical indexing of 3D matrices
Does changing from |D = A(:,:,1)| to |D = A(:,:,1).*B| and then assign |C(B) = D| help? Or does it still give memory problems?

9년 초과 전 | 0

답변 있음
how to delete the rest of the zeros from a matrix
To remove 0, you can simply do: |c(~c) = [];| you don't need a loop! Beauty of matlab :) ~c is essentially looking for empty...

9년 초과 전 | 0

| 수락됨

답변 있음
how can i read 20 files form excel for matlab together
|cd| to the directory containing all files |allfiles = dir;| |allfiles(1:2) = []; %this is because allfiles(1) = . & allfile...

9년 초과 전 | 0

답변 있음
How can I split a table at given rows?
*Solution to this question:* B = cell(length(idx),1); %preallocates dimensions for i = 1:1:length(idx) %creates...

9년 초과 전 | 0

답변 있음
Error when calling fucntion
|rotate| is already an inbuilt matlab function. Change your function name to |rotate_val| or something else (so it doesn't over...

9년 초과 전 | 1

답변 있음
Creating a matrix for each point point in a data set
M = {}; % creating a cell array that will contain your 806 matrices for i = 1:806 M{i} = eye(4,4); M{i}(2:en...

9년 초과 전 | 1

| 수락됨

답변 있음
how to use a function
Try making the first line of your function as: function [x] = num2wordsarabe(n) And now use it in strrep. I'm no expert ...

9년 초과 전 | 0

답변 있음
How to load the data from a specific excel files in a loop?
Try this and let me know if it works! % cd (<directory containing all the files you want to load>) allfiles = dir;...

9년 초과 전 | 1

| 수락됨

답변 있음
how to cluster using matlab
Easiest to implement is kmeans clustering. Look it up! Matrix = % your 8191x300 matrix NumC = 3 % number of clusters ...

9년 초과 전 | 0

| 수락됨

답변 있음
assign new names to matrices in loop
Agree with Stephen. However, if you have no choice, you can always start a loop with your conditions and sprintf should be able...

9년 초과 전 | 0

답변 있음
finding similar numbers and rounding to integers
Completely agree with John. But just in case: if length(find(fix([x1 x2 x3 x4 x5 x6 x7 x8])==1))>=2 ... condition ...

9년 초과 전 | 1

| 수락됨

질문


row wise output for find(ismember(Values, searchValues,'rows'))
I have two matrices say foo and bah as follows: >> foo = 2 19 5 68 17 19 65 37 73 ...

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

1

답변