Risposto
How can I find the second and third, etc. most frequent character in say a list of words (cell array of strings)?
a = unique(myStr); n = histc(myStr,a); [n,idx] = sort(n); myFreq = myStr(idx); Now myFreq will be the unique characters ...

oltre 8 anni fa | 0

Risposto
Ho to enter this equation and plot it
Well you can't do either right matrix or element by element division on the vectors X and w. X is 1x41 while w is 1x2. I'm assum...

oltre 8 anni fa | 0

Risposto
load txt files with columns of numbers and text
Try: fid = fopen('myFile.txt'); data = textscan(fid,'%s%s%d%d%d%d%s%d%d%d%d%d%d%d'); fclose(fid); This will read y...

oltre 8 anni fa | 0

Risposto
Looping through a 3D matrix
for i = 1:144 for j = 1:43 for k = 1:35 myVal = myData(i,j,k); %do something end end...

oltre 8 anni fa | 0

Risposto
How do I create a single line plot (just one line) with two differently scaled y-axes?
You can use plotyy() to plot two lines on top of each other so you only see one line. If the colors need to be the same, you can...

oltre 8 anni fa | 0

Risposto
How do I determine if a word has a certain character in it?
If you only want to know whether or not the letter is in the word... hasLetter = any(myWord == 'c');

oltre 8 anni fa | 0

| accettato

Risposto
Excluding files with a certain keyword in them
Assuming you have the file name as a variable, I'll use myName: myName = lower(myName); idx = strfind(str,'composite'); i...

oltre 8 anni fa | 1

| accettato

Risposto
How to stop overwriting the old values from a loop inside a GUI?
I'd put k and ng as handles on the dialog box figure. myGUI.k = 1; myGUI.ng = 3; Then, function myCallback(varargi...

oltre 8 anni fa | 0

Risposto
How to use text scan?
You can use textscan(fileID,'%s %s %s %s'); That will read all your data in. Only the last entry will matter, since tho...

oltre 8 anni fa | 0

| accettato

Risposto
Problem with find function
Modified code: hbs_ort = {'North' 'North' 'South' 'South' 'East' 'West' 'West' 'East'}; cabs_ort = 'North'; match=strfi...

oltre 8 anni fa | 1

Risposto
check if user pressed the button "OK" in msgbox
Use questdlg instead. h=questdlg('Please press OK','something','OK','OK'); switch h case 'OK' %'OK' code here...

oltre 8 anni fa | 0

Risposto
How to shade the area bounded by curves
This should do it. Modified from <http://www.mathworks.com/matlabcentral/answers/13233-plotting-linear-inequality-and-triangles ...

oltre 8 anni fa | 0

Risposto
Why does xlswrite not replace file when I tell it to?
You could fill the file with empty cells, or there's a solution <http://www.mathworks.com/matlabcentral/newsreader/view_thread/2...

oltre 8 anni fa | 0

Risposto
Read data from textfile
You could write something like data.txt: .25 .5 .75 1 .1822 .1751 ...etc. Then use something like textscan() or just ...

oltre 8 anni fa | 0

Risposto
Is there a shortcut for selecting the word under the cursor in MATLAB?
You could use shift + arrow to move to the beginning/end of a word, then shift + control + arrow in the opposite direction to se...

oltre 8 anni fa | 2

| accettato

Risposto
How can i get points table from output graph in matlab?
p = plot(xValues,yValues); myX = get(p,'xdata'); myY = get(p,'ydata');

oltre 8 anni fa | 0

Risposto
can a 2014 matlab program run on 2015 matlab?
It should, though is the possibility of incompatibility, but since the versions are only a year apart, I doubt there would be is...

oltre 8 anni fa | 0

Risposto
Decrypting a message in matlab?
There are 3 things which don't work with your code: # It doesn't work when the key is >26. # Your checks for whether or not ...

oltre 8 anni fa | 0

Risposto
GUI Figure Hide bottom part of figure
I'd say if you really needed the extra part to reveal from the bottom, you can write a resize function which adjusts the positio...

oltre 8 anni fa | 0

Risposto
Where to find a complete list of supported class names for 'set' command?
I don't think such documentation exists. The issue is that set() is an extremely generic. Its function differs wildly with what ...

oltre 8 anni fa | 0

Risposto
Finding a letter or number in a string of cells
out = {}; for i=1:numel(myData) myStr = myData{i}; myNum = str2double(myStr(myStr>= 48 & myStr <= 57)); m...

oltre 8 anni fa | 0

Risposto
Using strings as variable names in a for loop
Have you tried stepping line by line using the debugger? You'll notice that in the line C=zeros(myvar); You're trying t...

oltre 8 anni fa | 0

Risposto
Show value of an array in a messagebox
msgbox() doesn't give you a lot of options with the formatting. If you want to move the text to the right, you can add an icon. ...

oltre 8 anni fa | 0

| accettato

Risposto
Code to encrypt a string?
There are tons of Caesar Cipher resources out there. <http://www.mathworks.com/matlabcentral/fileexchange/39620-caesar-cipher...

oltre 8 anni fa | 1

| accettato

Risposto
Encrypting a Message with secret code?
There are tons of Caesar Cipher resources out there since it's a pretty basic problem in computer science courses. <http://ww...

oltre 8 anni fa | 0

| accettato

Risposto
how can we put the values obtained in static boxes in matrix form in gui?
Sounds like you need a uitable(). <http://www.mathworks.com/help/matlab/ref/uitable.html Read this documentation.> You can...

oltre 8 anni fa | 0

Risposto
Change color style of plot
I just split up the lines because semilogx() was being annoying: semilogx(tone, Room, 'Color',[1,0.4,0.6]); hold on semil...

oltre 8 anni fa | 1

| accettato

Risposto
built-in functions used in polyval
Command window -> edit polyval

oltre 8 anni fa | 0

Risposto
Identify first instance of something in a .dat file
fid = fopen('test.txt'); data = textscan(fid,'%s %s'); data = [data{1} data{2}]; out = data(1,:); for i=2:...

oltre 8 anni fa | 0

| accettato

Risposto
How to send output to the main function from a nested callback function?
This is something I struggled with when I first learned how to build GUIs. The way you have your code set up, a call to Question...

oltre 8 anni fa | 1

Carica altro