Beantwortet
Cannot seem to save data to a file within a class
Yes, there is. To make it work, replace evalin('base', sprintf('save(''%s'', ''data'')', s.fileLoc)); by save( s.f...

mehr als 8 Jahre vor | 1

| akzeptiert

Frage


How to suppress message of validatestring?
z = validatestring( 'azaa', {'aaa','bbb'} ); outputs in red to the Command Window Expected input to match one of t...

mehr als 8 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
how to model a battery energy storage system in matlab
See <https://se.mathworks.com/matlabcentral/fileexchange/?search_submit=fileexchange&query=Lithium-Ion++Battery+&term=Lithium-Io...

mehr als 8 Jahre vor | 0

| akzeptiert

Beantwortet
Assgin a name to sequentially imported files
Given *|dataStruct|*. An alternative approach results = structfun( @do_some_operations_on, dataStruct, 'uni',false ); wh...

mehr als 8 Jahre vor | 0

Beantwortet
How to compare strings in a cell
Try this %% Sample data str = char(randi(double(['A','Z']),[20,3] )); % Too smart cac = mat2cell( str, ones(1,20),3 ...

mehr als 8 Jahre vor | 0

| akzeptiert

Beantwortet
Writing a Leap year function without using the leapyr function
See <https://en.wikipedia.org/wiki/Gregorian_calendar> Every year that is exactly divisible by four is a leap year, except f...

mehr als 8 Jahre vor | 1

| akzeptiert

Beantwortet
Help with optimising my code?
%% xMat = randn( 12, 1); edges = ( - 4 : 1 : 4 ); yMat = ( 1 : 12 )'; %% [ N, bin ] = histc( xMat, edge...

mehr als 8 Jahre vor | 1

| akzeptiert

Beantwortet
Need help in correction of error for training my data
The message says: Cell contents reference from a non-cell array object An example of this error >> a=17; >> a{1}...

mehr als 8 Jahre vor | 0

| akzeptiert

Beantwortet
how to select a random number from the existing matrix in each column
It's smarter to use a for-loop >> A A = 1 2 3 4 5 6 7 8 9 10 11 ...

mehr als 8 Jahre vor | 0

Beantwortet
My Newton's Method "for loop" and table only displays the last iteration. I would like it to display all iterations. How do I do this?
Currently you overwrite the table, T, in every iteration. Replace T = table(i,t,f,dt,t0); by if i == 1 T = ...

mehr als 8 Jahre vor | 0

Beantwortet
How do you create a new vector using every other number from your original vector. Including the first number of the original vector.
An example >> vec = randi(3,1,18) % test data vec = Columns 1 through 14 3 3 1 3 2 1 ...

mehr als 8 Jahre vor | 0

Beantwortet
How can I delete numeric Headings/Delimiters from a large text file
And with regular expressions >> out = cssm('examplefile.txt'); >> out(1:32) ans = 1 5 0 0 2 15 0 0 3 2...

mehr als 8 Jahre vor | 0

Beantwortet
this is my code and it has a problem while calculating kafa=y2/y12
Error using / Matrix dimensions must agree. >> whos y2 y12 Name Size Bytes Class Attrib...

mehr als 8 Jahre vor | 0

| akzeptiert

Beantwortet
Replace numbers by strings
One way: A = randi([80,100], 1,100 ); % Sample data C = cell(size(A)); C(A<90)={'case1'}; C(A>=90)={'case2'}; r...

mehr als 8 Jahre vor | 5

| akzeptiert

Beantwortet
How to replace a missing value of a table with a cell?
*|test.csv|* contains two rows Features,,,,,,,,,,,,,,,,,,,, F1,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,,18,19,20 That ...

mehr als 8 Jahre vor | 1

| akzeptiert

Beantwortet
How to create a matrix that contains members with specific different between each element ?
Starter: >> cumsum([1,A]) ans = 1 5 12 27

mehr als 8 Jahre vor | 0

| akzeptiert

Beantwortet
How to change workspace of imageSegmenter from 'base' to 'current' to access the binary masks created by ImageSegmenter?
The export feature of imageSegmenter saves the picture to the base workspace. There is no alternative as far as I can see. I...

mehr als 8 Jahre vor | 0

Beantwortet
Importing multiple .dat files in MATLAB
Try >> out = cssm( 'h:\m\cssm\trial*.dat' ) it should return out = 1x5 struct array with fields: name ...

mehr als 8 Jahre vor | 0

Beantwortet
How to delete/retain variables (columns) from a table based on sections of the variables name
One way %% Sample table tbl = array2table( magic(5) ); tbl.Properties.VariableNames = .....

mehr als 8 Jahre vor | 1

| akzeptiert

Beantwortet
Preallocate object array problem: Toolbox Path
Starter: array(1,10) = mix.track(file);

mehr als 8 Jahre vor | 0

| akzeptiert

Beantwortet
How can i change data from arrays position to NaNs?
Hint >> Data(Flag==1) = nan;

mehr als 8 Jahre vor | 0

| akzeptiert

Beantwortet
Extract matrix from vector of .mat file
Try i.imageLabelCell{1}(:,1)

mehr als 8 Jahre vor | 0

| akzeptiert

Beantwortet
How to read large text data into matlab
*Given:* * All headers consist of 9 lines * All data blocks consist of 7 columns of numerical data * The blocks of numerica...

mehr als 8 Jahre vor | 1

Beantwortet
How to load mat file located in a package folder (.../+folder/matfile.mat)
Given ...\+pkg\cls.m ...\+pkg\matfile.mat Try this >> obj = pkg.cls obj = cls with properties: ...

mehr als 8 Jahre vor | 0

Beantwortet
Reading specific rows and columns of numerical values from a text file
Here is an implementation along the lines suggested by <https://se.mathworks.com/matlabcentral/answers/373798-reading-specific-r...

mehr als 8 Jahre vor | 0

Beantwortet
How to extract multiple matrices from a big set (Large Matrix) of data?
Use this code to study for-loop and indexing. Put a break-point at *|17;|* %% MNP130 = 1:(5*5*14680*30); % a 1D doubl...

mehr als 8 Jahre vor | 0

Beantwortet
how to extract file name
If I got you question right cac = { '0101.txt', '0103.txt', '3001.txt', '3003.txt' }; out = regexp( cac, '^\d{2}', 'matc...

mehr als 8 Jahre vor | 0

| akzeptiert

Beantwortet
Remove columns for a cell array
One way >> cac = cell(10,3000); >> cac = cac(:,1:end-1000); >> size(cac) ans = 10 2000 >> ...

mehr als 8 Jahre vor | 0

| akzeptiert

Beantwortet
Calling a Function From Another Function
M = table_1( data ); food( M ); or food( table_1( M ) ); The two line construct is easier to debug where...

mehr als 8 Jahre vor | 0

Beantwortet
I want to make the following row matrix looks like a matrix with rows and columns.
Column major A = [ 296, 2, 47, 296, ... ]; B = reshape( A, 3,4 ); C = permute( B, [2,1] ) outputs C = 2...

mehr als 8 Jahre vor | 0

Mehr laden