Respondida
Use of nargin and varargin
It's a bit of a challenge to make this program correct easy to maintain user friendly (I assume that you really need all...

alrededor de 7 años hace | 2

| aceptada

Respondida
save figure as filename that I already have
Q1: I've learned the hard way not to mess with legend(). Thus, I pass this one. Q2: Here is a hint. Run this script on...

alrededor de 7 años hace | 0

| aceptada

Respondida
How can i fix ' Unable to perform assignment because the left and right sides have a different number of elements.' in the loop functions ?
One thing is to make a code run without throwing errors, another is to make it produce the intended result. Replacing omega3 b...

alrededor de 7 años hace | 0

Respondida
Extracting consecutive digits using regexp
These two returns "123" %% cac = regexp('ITEM 123', '.+?(\d+)', 'tokens' ) %% cac = regexp('ITEM 123', '[^\d]+(\d+)', 'token...

alrededor de 7 años hace | 0

| aceptada

Respondida
How do I extract a number from a string?
Try this %%-section by section %% cac = { 123, 'U 2'; 'Mod3', 789 }; % Sample data %% isx = cellfun( @(chr) isa(chr,'char'),...

alrededor de 7 años hace | 0

| aceptada

Respondida
How to create a vector with "n" random elements chosen from two values stated like "bit1" and "bit0"?
Try Fs = 100; y = randi( [0,1], 1,Fs ); y(y==0) = -1;

alrededor de 7 años hace | 0

Respondida
problem in loading .mat file (Error using load)
On Win10, R2018b I have downloaded your two files from Box successfully dragged the 'Util_Tgt0.7_SC7_dr0.07_20181111_test2_Fi...

alrededor de 7 años hace | 0

Respondida
MatLAB gives NaN result on simple loop
"where the f2 is always not equal to f1" My steps set dbstop if naninf started your script execution halted at line 77, z3 =...

alrededor de 7 años hace | 0

Respondida
if statement with sub cases
Try %% text = 'Time = 16:0:16 Height'; %% num = sscanf( text, 'Time = %d:%d:%d Height' ); time = [ 60*60, 60, 1 ] * num;...

alrededor de 7 años hace | 1

| aceptada

Respondida
Using Textscan on non-uniform data
An exercise with fscanf() %% ffs = "HS_full_18md_nam_outputs.txt"; fid = fopen( ffs, 'r' ); [~] = fgetl( fid ); num = fsca...

alrededor de 7 años hace | 1

| aceptada

Respondida
Mismatch between file and format character vector but the CSV file contains only numerics?
dlmread() fails to read and convert quoted digits, e.g. "123","456","789". Neither does csvread(). See Comma-separated values....

alrededor de 7 años hace | 4

| aceptada

Respondida
How can I use a specified order of strings to index from a cell array?
Run section by section %% deg_baseFileName = "Test1_female_44k_70dBA_babble7ch_1sp_20k_00dBA_48k"; %% deg_parts = strsplit(d...

alrededor de 7 años hace | 1

Respondida
Loading Large .txt files
You didn't say how much physical memory is in your system. Matlab provides ways to handle large text files, Large Files and Bi...

alrededor de 7 años hace | 0

| aceptada

Respondida
serveral normrnd without a loop
What about this? >> cell2mat( arrayfun( @(m,l) normrnd( m, sig, [1,l] ), mu, len, 'uni',false ) ) ans = Columns 1 through ...

alrededor de 7 años hace | 0

| aceptada

Respondida
How can I run a matlab program N times using a different value of one of my variables
Assumptions: You have a script. Lets call it myScript. The first line of myScript is clear all Near the top of myScript the...

alrededor de 7 años hace | 0

| aceptada

Respondida
How to remove \n and empty line after combine all the lines into an array
Replace fgets by fgetl fgetl, Read line from file, removing newline characters In response to comment To remove the endi...

alrededor de 7 años hace | 1

| aceptada

Respondida
Replace numbers into a vector starts at the center? Looking for general format
Run this %% vec = [ 0 0 0 0 0 ]; vec1 = [ 1 1 1 ]; new_vec = [ 0 1 1 1 0 ]; %% len = length( vec ); len...

alrededor de 7 años hace | 1

| aceptada

Respondida
index exceeds matrix dimensions
Your profile shows that you over the last few months have posed ten questions in this forum and not received a single answer. Ar...

alrededor de 7 años hace | 1

| aceptada

Respondida
Loop is running only for certain value in the whole range
I'm not a fan of backward engineering of faulty code. The formula of one of your comments is the formula of a moving average. Ma...

alrededor de 7 años hace | 0

| aceptada

Respondida
Using Property Blocks : Set/get on properties within a single property block
The problem is obviously to implement 'block','Data'. Try this >> myc = myClass myc = myClass with properties: na...

alrededor de 7 años hace | 1

| aceptada

Respondida
Class with dynamic properties but no handle
"like a stupid thing to ask" No that's definately a good question that deserves an answer. "how do I go from a handle class t...

alrededor de 7 años hace | 1

| aceptada

Respondida
Determine The Input Time with tic,toc
I assume that hObject is a uicontrol object of style edit. Your current script reads the elapse time of getting the current st...

alrededor de 7 años hace | 1

| aceptada

Respondida
Import .mat files and arrange some data in a matrix
Set Pause on Errors and run again Next see: Debug a MATLAB Program and Examine Values While Debugging

alrededor de 7 años hace | 0

| aceptada

Respondida
How to inherite and intialize object values
"How do I inherit inputDef in a another class such that [...]" See Composition over inheritance and try %% in = inputDef()...

alrededor de 7 años hace | 0

Respondida
Replace the elements of a matrix
One way z = permute( A, [2,1] ); B = z(:); or z = permute( A, [2,1] ); B = reshape( z, [],1 );

alrededor de 7 años hace | 0

| aceptada

Respondida
Error in fprintf function
"Invalid file identifier. Use fopen to generate a valid file identifier". The problem is most likely with this line fid = fopen...

alrededor de 7 años hace | 1

| aceptada

Respondida
From cell to matrix
One way %% cac = { [5,6],[5,12],[6,12] ; [7,11],[],[] ; [18,19],[],[] }; % your sample data ise = cellfun( @isempty, cac ); ...

alrededor de 7 años hace | 0

Respondida
Table values that is a scalar string
On my system Win10, R2018b, Excel 2016 all the methods to reference the last column works. (I downloaded AA.xlsx from another qu...

alrededor de 7 años hace | 0

Respondida
Question with for loop 'Index in position 1 exceeds array bounds (must not exceed 9)'
Line 9 arcStraight(ii,jj)=distance('rh',lats(ii,jj), lons(ii,jj),lats(ii+1,jj),lons(ii+1,jj),referenceEllipsoid(7030)); conta...

alrededor de 7 años hace | 1

| aceptada

Respondida
How to read only the first term on the file.
Try this %% ffs = 'h:\m\cssm\force.dat'; % change to your folder fid = fopen( ffs, 'r' ); cac = textscan( fid, '%*f%s%*s%*s'...

alrededor de 7 años hace | 1

| aceptada

Cargar más