Community Profile

photo

joseph Frank


American University of Beirut

自 2011 起处于活动状态

统计数据

  • First Review
  • Thankful Level 5

查看徽章

Content Feed

排序方式:

提问


Extracting the second decimal point of a number
Hi, I want to extract the 2nd decimal point without rounding from a vector of numbers. For example: A=[8.18750]; I wa...

10 years 前 | 1 个回答 | 0

1

个回答

提问


Extracting data from pdf files
Hi, I have around 300 pdf files with 19 pages each. I want to extract from each of them a fraction of a table on page 4 in or...

10 years 前 | 2 个回答 | 0

2

个回答

提问


export csv file without NaN values
Hi, I am using the following code: filename='AllFirms.csv'; %write string to csv fileID = fopen(filename,'w...

10 years 前 | 2 个回答 | 1

2

个回答

提问


Using a loop to write to excel
I have a long list of variables in my workspace that I want to write to excel. I am just quoting few here: List={'B_AfterEm...

10 years 前 | 1 个回答 | 0

1

个回答

提问


Concatenate Aphabets and numbers
Hi, I am trying the following code: Alphabet=char('a'+(1:26)-1)'; [I,J]=ndgrid(1:26,1:26); I=I'; J=J'; XX=[Alph...

10 years 前 | 2 个回答 | 0

2

个回答

提问


save the results of who function
Hi, I want to store the results of variables that start with B in a cell array where each row display the name of one variabl...

10 years 前 | 1 个回答 | 0

1

个回答

已回答
find an ID that has two values for another variable
No I want them both to exist the 1990 and 1996 . It is not an "or " but rather an also.

10 years 前 | 0

提问


find an ID that has two values for another variable
Hi, ID and fyear are vectors of the same size year(x00-1)=1996;year(x00-7)=1990 I want to find the ID that is equal to ID(i) ...

10 years 前 | 2 个回答 | 0

2

个回答

提问


Matching two matrices by sign
A=[1,1,-3;2,-1,4]; B=[2,4,-2; 2,-1,-3]; *How can I get that the sign of B(2,3) is different than the sign of A(2,3)?...

10 years 前 | 1 个回答 | 0

1

个回答

提问


converting a text to number
I have a cell array with cells that have the following format: C={'-0.17' '1.85*' '0.22' '0.43' '2.23**' '-0.18' '-0....

10 years 前 | 1 个回答 | 0

1

个回答

提问


Extracting text from a cell
A='00003H102' How can I write a code to extract the first 6 letters and numbers. i.e. I want B='00003H';

10 years 前 | 3 个回答 | 0

3

个回答

提问


exporting from matlab to excel
I have 236 vectors and arrays named A, B, C.....etc... Some of them are cell arrays and some of them are double vectors. How can...

10 years 前 | 2 个回答 | 0

2

个回答

提问


Matching only parts of two cell arrays
A= {'36450A107';'36467A107';'38067A107'} B={'36467A'}; How can I find that the 2nd cell in A matches the first 6 character...

10 years 前 | 3 个回答 | 0

3

个回答

提问


random vectorof zeros and 1
Hi, if I want to generate a random vector of length 1000 where 700 are zeros and 300 are ones how can I do so? I want the zer...

11 years 前 | 1 个回答 | 0

1

个回答

提问


finding the breakeven point
Hi, I have the following equation: nanmean(R(x0+1))-(fm1.*BHR)+(ntrades/2*n)*log((1-c)./log(1+c)); I know every param...

11 years 前 | 1 个回答 | 0

1

个回答

提问


ttest of a portfolio
Hi, I have a portfolio of stock returns,and R is a matrix of individual stock returns (rows are dates and columns are the sto...

11 years 前 | 0 个回答 | 0

0

个回答

提问


How to edit a cell to include a parantheses
I have a number 7.511502463068333e-04. I want to put it in a cell. I used : B=[7.511502463068333e-04]; A=num2cell(...

11 years 前 | 1 个回答 | 0

1

个回答

提问


find where number changes in a matrix
I have a matrix of +1 and -1 values. I want to find where the number flips from 1 to -1 or vice versa where the change is a chan...

11 years 前 | 2 个回答 | 0

2

个回答

提问


save in a folder
Hi, I want to save in a folder mat files with a changing name. for i=1:length(ID) Filename=[num2cell(ID(i)) '...

11 years 前 | 2 个回答 | 1

2

个回答

提问


Inserting a 1000 separator
Hi, I am building a table in which I need to insert numbers with a comman 1000 separator and two decimal points. For example: ...

11 years 前 | 3 个回答 | 0

3

个回答

提问


finding the number of consecutive data
Hi, I have a vector of 5000 obeservations containing nan values and prices. How can I tell if this vector contains 60 consecu...

11 years 前 | 1 个回答 | 0

1

个回答

提问


Filling the gaps in a vector
I have a vector of nans A=[nan;nan;2;nan;4;nan;nan;nan;7;nan;nan;nan;nan] how can I fill the nan gaps by the closest number ...

11 years 前 | 4 个回答 | 0

4

个回答

提问


closest day a year back
Hi, I have a vector of dates and my alogorithm is picking one observation X in a loop. I want to go back an exactly year back...

11 years 前 | 2 个回答 | 0

2

个回答

已回答
getting rid of a loop
Thanks Nirmal for your efforts but still it doesn't work. Just in case my question wasn't clear I will rephrase it here X has...

11 years 前 | 0

提问


getting rid of a loop
Hi, I have a cell array X which has around 1 million rows. each row has a 1x18 cell in it. I want to select columns 4,5,10,18...

11 years 前 | 2 个回答 | 0

2

个回答

提问


time to number conversion
I have a cell array that has the following format: v0={'1/4/2011','12:17:09'} I converted the date to number using the datenum...

11 years 前 | 1 个回答 | 0

1

个回答

提问


parcing comma delimited column to multiple vectors and cell arrays
Hi, I am importing a series of CSV files of 18 columns each with different row sizes (can be up to 800,000 rows) using teh fo...

11 years 前 | 1 个回答 | 0

1

个回答

提问


ismember for many datasets
Hi, I have many vectors sorted: A1,A2,.....A7 is it possible to know in one function which number is common between all of...

12 years 前 | 2 个回答 | 0

2

个回答

提问


identifing the beginning and the end of a series
Hi, I have long vectors that have the following structures of zeros and ones: <0 1 1 1 1 1 1 1 0 0 0 0 0 0 1 ...

12 years 前 | 1 个回答 | 0

1

个回答

提问


T test critical values
Hi, I am using regstats2 function to get the HAC Newey West t statistics. However, I want to compare this t test with a criti...

12 years 前 | 0 个回答 | 0

0

个回答

加载更多