Risposto
[DEPRECATED] What frustrates you about MATLAB?
*|[Find Files]|* &nbsp does not honor that multi-line comments are also comments. Single line comments are highlighted green in ...

oltre 11 anni fa | 0

Risposto
File Exchange - Quickly see comments?
Yes, I find it important to monitor and respond to comments on my FEX submissions (and Answer answers). However, I don't want th...

oltre 11 anni fa | 2

Risposto
Call a script via a function?
Look at this >> cssm ans = Greeting from the script where cssm is the function function out = c...

oltre 11 anni fa | 0

| accettato

Risposto
Indexing custom array class objects
Try this newModulus = {35,20}; [mat([1,3]).Modulus] = deal( newModulus{:} ); % this does work

oltre 11 anni fa | 1

| accettato

Risposto
creating strings with variables
This code is much more complicated than needed. for i=1:numel(mat_frac) evalit = sprintf('file{%d}=nuPots_run1_120_1cm_...

oltre 11 anni fa | 0

Risposto
Multiple plots using same axis in Matlab
Yes, provide the axes-handle in the call to *|scatter3|* ... instead of setting the current axes. Doc says: scatter3(ax,_...

oltre 11 anni fa | 1

Risposto
sum of products to a series and a function
Is *|matlabFunction|* what you are looking for? &nbsp See <http://se.mathworks.com/help/symbolic/matlabfunction.html?searchHig...

oltre 11 anni fa | 1

Risposto
How to delete an empty matrix ?
Try clear a

oltre 11 anni fa | 0

| accettato

Risposto
How do I change the size of prompt?
*_"Resize='on'"_* &nbsp enables the user to resize the dialog figure. *_"change the size of prompt."_* &nbsp See the screen ...

oltre 11 anni fa | 2

| accettato

Risposto
How to define a variable?
_*"[...]changing variable p whichever user inserts"*_ &nbsp I assume _"*z*"_ is a highlighted input variable. However, I cannot ...

oltre 11 anni fa | 1

Risposto
I am having some issues debugging my matlab program for population growth
I played a bit with your equation. * converted your script to a function, *|cssm|* [attached] * pre-allocated a couple of v...

oltre 11 anni fa | 1

Risposto
Import text file with blank lines. Matlab not replacing them with NaN
Remains (at least) two possibilities * a loop over *|fgetl|* * read the file as one string, replace empty lines by *|'nan na...

oltre 11 anni fa | 1

| accettato

Risposto
Help with nxn matrices
The only problem I find is the two ending *|end|*. After adding *|end|* to the end of each function. (You don't say what kind o...

oltre 11 anni fa | 1

| accettato

Risposto
Search for elements in a string
A code based on *|regexp|* %% str = 'add\?/adfd'; chr = char(32:47); xpr = ['[',regexptranslate('escap...

oltre 11 anni fa | 0

Risposto
how can I convert comma with decimal points for a lot of textfiles?
See <http://se.mathworks.com/matlabcentral/answers/57276-import-data-file-with-comma-decimal-point#answer_69283 Import data file...

oltre 11 anni fa | 0

| accettato

Risposto
What is the benefit of using a function handle?
See <http://se.mathworks.com/help/matlab/matlab_prog/overview-1.html What Is a Function Handle?> IMO: the main benefit is th...

oltre 11 anni fa | 1

| accettato

Risposto
How do you declare structures within classes?
_"method describe above doesn't work"_ &nbsp I don't understand how you want it to work. That's might be because I don't know th...

oltre 11 anni fa | 0

Risposto
deleting a certain variable in the base workspace via a function
Try evalin( 'base', 'clear(''x'')' ) and simpler evalin( 'base', 'clear x' ) *But take the advice of Image A...

oltre 11 anni fa | 6

| accettato

Risposto
Plot time vs displacement of mass/spring/damper system step response, underdamped
Search the File Exchange for <http://se.mathworks.com/matlabcentral/fileexchange/index?utf8=%E2%9C%93&term=mass+spring+damper ma...

oltre 11 anni fa | 1

Risposto
How to get the file name as the title of the figure window?
Try to replace sprintf('file name is %d',baseFileName) by sprintf('file name is %s',baseFileName) Since th...

oltre 11 anni fa | 2

| accettato

Risposto
Import timestamps from textfile with more than 10k entries (R2014b)
Yes, Star Strider is correct. The string "E16" appears 24 times in the first column. What's that supposed to indicate? And I fou...

oltre 11 anni fa | 1

Risposto
Randomly makes matrix rows as one vector
Hint M = magic( 7 ); R = M( randperm(7), : );

oltre 11 anni fa | 2

| accettato

Risposto
Can a child object reference to a parent object?
Here is one way to let parent and child share a variable. %% pc = ParentClass; cc = ChildClass; cc.A.a = ...

oltre 11 anni fa | 2

Risposto
About isinteger command(confusion)
Matlab represents integers in differnt ways: * int8, int16, etc. see Christians answer * with a special use of double, which...

oltre 11 anni fa | 2

| accettato

Risposto
How can I design a matlab GUI to display an ECG signal
Search the File Exchange for * <http://se.mathworks.com/matlabcentral/fileexchange/index?utf8=%E2%9C%93&term=ecg+signal ecg ...

oltre 11 anni fa | 2

Risposto
How to read alphanumeric(alphabetic+numeric) columns to MatLab?
Try *|textscan|* %% fid = fopen( 'cssm.txt' ); cac = textscan( fid, '%f%f%s' ... , ...

oltre 11 anni fa | 1

| accettato

Risposto
Read a text file with varying number of colums
Try %% fid = fopen( 'cssm.txt' ); cac = textscan( fid, '%s%s%s%s%s%s%s%s%s', 'CollectOutput' ... ...

oltre 11 anni fa | 2

| accettato

Risposto
Insert whole containing of text file to Matlab
Example of setting and resetting the string of an editbox %% figure str = fileread('cssm_1.help'); ebh = u...

oltre 11 anni fa | 1

Risposto
How to access subfunction headers with "help" command?
_"Something like help myFunc.mySubFunc?"_ &nbsp Yes, it's possible with R2013a (and earlier). Try >> help cssm>sub_cs...

oltre 11 anni fa | 3

Risposto
Saving many strings in cell to .txt readable for Unity, error with fprintf
Replace colours{ch, i}={'black'}; by colours{ch, i}='black'; etc. It is either colours{ch, i}='b...

oltre 11 anni fa | 2

| accettato

Carica altro