duffman18's Profile
Reputation: 13
Tradesman
- Group:
- Active Members
- Active Posts:
- 54 (0.06 per day)
- Joined:
- 20-October 10
- Profile Views:
- 1,316
- Last Active:
Oct 31 2012 07:14 AM- Currently:
- Offline
Previous Fields
- Country:
- US
- OS Preference:
- Windows
- Favorite Browser:
- Chrome
- Favorite Processor:
- Who Cares
- Favorite Gaming Platform:
- PC
- Your Car:
- Pontiac
- Dream Kudos:
- 0
Latest Visitors
-
modi123_1 
14 Aug 2012 - 11:23 -
amp29855 
30 Dec 2010 - 19:51 -
leon8chicken 
11 Dec 2010 - 14:02 -
skyhawk133 
29 Nov 2010 - 09:46 -
Atli 
23 Nov 2010 - 16:20
Message
No blog entries
My Information
- Member Title:
- D.I.C Head
- Age:
- Age Unknown
- Birthday:
- July 18
- Gender:
-
- Location:
- MO
- Years Programming:
- 8
- Programming Languages:
- C++, C, HTML, CSS, Java, Assembly, Python, MATLAB
Contact Information
- E-mail:
- Private
- Twitter:
- bSeabaugh
- Xfire:
- duffman18
|
|


Find Topics
Find Posts
View Reputation Given
|
Comments
leon8chicken
04 Dec 2010 - 15:34while D <length(C)
E = C (D, :);
assign2_dict(E)
D = D + 1;
end
which in the case of the code you saw would give me the words in the dictionary that match the permutations of the word that was supplied to me. However this method stopped working when i use
B = (A(:, 1:7))
It only works upto
B = (A(:, 1:6))
leon8chicken
04 Dec 2010 - 15:30below is matlab script that i have for an assignment. Our lecturers supplied us with 2 files.
I get a 9 letter word back from W.
A gives me the permutations of the word.
B gives me a matrix with my parameters
W = assign2_word('ldavisa')
A = perms(W)
B = (A(:, 1:3))
C = (unique (B, ‘rows’))
D = 1
While D ...