Beantwortet
Compare two arrays (intersection) and create new array with output columns, but with repetitions
Your way of defining A, B and C makes me wonder whether you intended to define matrices, not vectors. Anyhow, this is a differe...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
Working With Matlab Tables
"I remember from somewhere" With Matlab that doesn't work for me. I need to consult the documentation more often than not. This...

mehr als 6 Jahre vor | 0

Beantwortet
Calling .inp file into MATLAB
" .inp file created in Abaqus" is that a text file like the sample below? If so, Matlab itself together with its toolboxes don'...

mehr als 6 Jahre vor | 0

Beantwortet
Launching a thread that effectively pushes a button in your GUI periodically
Create a timer ( see timer class Create object to schedule execution of MATLAB commands) that periodically invokes the Update c...

mehr als 6 Jahre vor | 1

| akzeptiert

Beantwortet
Creating random vector with 10 different lengths
Documentation on randi says: X = randi(imax,n) returns an n-by-n matrix of pseudorandom integers drawn from the discrete unifor...

mehr als 6 Jahre vor | 1

Beantwortet
[ERROR] Index exceeds array dimensions. Index value 0 exceeds valid range [1-1] of array Coeff.p01.
I guess that this term causes the error Coeff.p01(torque*Coeff.b/Coeff.T_max) and that's because torque*Coeff.b/Coeff.T_max ev...

mehr als 6 Jahre vor | 0

Beantwortet
How do I use regexp to extract text between numbers
"So the end product I want will be a 16x1 string that looks like" I'm not sure exactly how understand your requirement. The pr...

mehr als 6 Jahre vor | 1

Beantwortet
find a string using regular expression using a special condition
Assumptions regarding the search terms case is significant. ( "liquid, X" the lower case "l" is a typo.) space is significant...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
Strange error using readtable
I've downloaded brtyrpre.txt from your comments and copy&pasted brtyr_error_pre.txt from your question ("Here is the one the sc...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
Comparing Matrices in a Struct
Try this S(1).model_data = rand( 4, 10 ); S(2).model_data = rand( 2, 10 ); S(3).model_data = rand( 3, 11 ); Out = cssm_( S ...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
Compare classes with different Properties
Try this %% Create sample data mc(20) = MyClass; [mc(1:7).a] = deal(1); [mc(8:20).a] = deal(2); %% Desired output edges =...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
Why can't a concrete subclass use size and validator functions on abstract superclass properties?
The R2019b doc on Validate Property Values says [...] Abstract Property Validation You can define property validation for ab...

mehr als 6 Jahre vor | 1

Beantwortet
save obj creates a large mat files, disagrees with whos
"Once I have reached the 2GB data size format v7 will no longer work." ??? Doc on save v7 says: 2^31 bytes per variable Ex...

fast 7 Jahre vor | 0

Beantwortet
why does my m file not save correctly
The command save is used to store variables of the current workspace, i.e. save data. There is no simple command to save m-code...

fast 7 Jahre vor | 0

| akzeptiert

Beantwortet
Why does converting a table to a struct increase memory usage by 15x??
What kind of structure do you expect? table2struct can create two kinds. struct array with one struct for each row of the tab...

fast 7 Jahre vor | 1

Beantwortet
How to load text file to workspace variables?
"load to workspace as variables with string name in var and numeric value as val." There need to be a really good reason to do ...

fast 7 Jahre vor | 0

Beantwortet
how to produce a logical matrix using index matrix
Try logical_matrix = false( 1, 4 ); logical_matrix( b ) = true;

fast 7 Jahre vor | 1

| akzeptiert

Beantwortet
Error using - Matrix dimensions must agree.
I get a different error. One reason for the difference in the wording is that we run different releases of Matlab(?). I run R201...

fast 7 Jahre vor | 0

| akzeptiert

Beantwortet
Varargout - How to realize function call
varargout exercise. Try something like this function varargout = test( j, k ) out1= nargin; out2 = j-k; if out2 ...

fast 7 Jahre vor | 0

Beantwortet
How many times does each combination of numbers appear?
"get it to tell" depends on what the little word "it" refers to. The function randi() cannot tell that. Try this as a start %...

fast 7 Jahre vor | 0

| akzeptiert

Beantwortet
How do I save each iteration of a loop into a matrix?
Replace for i=0:n c=circshift(p, [0, i]); end by c = nans(n,1); for i=0:n c(i)=circshift(p, [0, i]); end

fast 7 Jahre vor | 0

Beantwortet
Using Load in a test methods makes the test pass
Looks like a bug to me, however in programs one ought to use the functional form S = load('matlab.mat'); In that case the test...

fast 7 Jahre vor | 0

Beantwortet
Trouble reading the file with strread and textscan
"Illegal use of reserved keyword "end". " Deleting some code may leave a spurious end sometimes far to the right outside the ...

fast 7 Jahre vor | 0

Beantwortet
Loop for sequence of text files
See How can I process a sequence of files?

fast 7 Jahre vor | 0

Beantwortet
How to perform operations depending on a value in an array
This works accourding to your expectations - I think. %% C=[10,8,34,7,7,24,11,15,10,13,13,20,17,39,6,9,5,21]; data=2200; for...

fast 7 Jahre vor | 0

| akzeptiert

Beantwortet
Change folder vs change directory
Matlab issues the message that you refer to in "Change folder is the option that sometimes matlab ask before running the script"...

fast 7 Jahre vor | 0

Beantwortet
How can I save data from features files into matrix?
I understand that "data for each feature for 500 images" is in ONE text file with 500 blocks of six rows. The format is illust...

fast 7 Jahre vor | 0

| akzeptiert

Frage


Regular expression. Are nesting of group operators supported?
Regarding Grouping Operators the function, regexp, doesn't behave the way I expected. >> cac = regexp( 'ABC', '((A)(B(C)))'...

fast 7 Jahre vor | 1 Antwort | 2

1

Antwort

Beantwortet
Question about column operator vectors
Doc says x = j:k creates a unit-spaced vector x with elements [j,j+1,j+2,...,j+m] ... x = j:i:k creates a regularly-sp...

fast 7 Jahre vor | 0

| akzeptiert

Beantwortet
how to run function 1000 times to find minimum
Something like S = struct( 'score', cell(1,1000), 'grouping', cell(1,1000) ); for jj = 1 :1000 S(jj).grouping = randomize...

fast 7 Jahre vor | 1

| akzeptiert

Mehr laden