Beantwortet
Computing 4th cumulant of Gaussian variable
When number of samples is sufficiently large, the sample mean (your fucntion output) is approaching to the true expected value (...

etwa 5 Jahre vor | 0

Beantwortet
Change colour of line graph once a value is reached
The program is slow because it draws and updates the line segment (of two points) by segment . To speed up in the simplest way,...

etwa 5 Jahre vor | 0

| akzeptiert

Beantwortet
solving the Transfer function
% Divide G(s) into two parts (or manually simplify it) h1 = tf([0.02 1], [0.005 1 0 0 0]); h2 = tf([0.025 1], [0.001 1]); g =...

etwa 5 Jahre vor | 1

| akzeptiert

Beantwortet
I need to create a nested struct from nested folders
% List all the file in current folder and subfolders fn = dir('**/*'); % structure for the information of all the file % f...

etwa 5 Jahre vor | 0

| akzeptiert

Gelöst


Replace Nonzero Numbers with 1
Given the matrix x, return the matrix y with non zero elements replaced with 1. Example: Input x = [ 1 2 0 0 0 ...

etwa 5 Jahre vor

Gelöst


Matrix multiplication across rows
Given matrix m, return matrix n such that, rows of n are result of multiplication of the rows of the input matrix Example ...

etwa 5 Jahre vor

Gelöst


A matrix of extroverts
Now that the introverts have had their script, the extroverts spoke up (naturally!) and demanded one as well. You will be given...

etwa 5 Jahre vor

Gelöst


Convert matrix to 3D array of triangular matrices
Given a 2D numeric array x in which each column represents the vectorized form of an upper triangular matrix, return a 3D array ...

etwa 5 Jahre vor

Beantwortet
Running the Same code for Multiple Files in a Folder
Here is a schetch of the solution: fn = dir('a*.txt'); % obtain the file information 'a*.txt'. make your own modification for...

etwa 5 Jahre vor | 0

Beantwortet
issue when creating and saving file to specific folder
When dataFolder is a variable, change directory with the following statement: cd(dataFolder) ;

etwa 5 Jahre vor | 1

Gelöst


Too Many Zeros, Dump Them!
Sometimes when I create a matrix, I use this syntax: a = zeros(1000,1000); But when the function ends, I find that I don'...

etwa 5 Jahre vor

Gelöst


Enlarge array
Given an m-by-n numeric array (A) and a 1-by-2 vector (sz) indicating the dimensions [p q] to enlarge each element, return an (m...

etwa 5 Jahre vor

Gelöst


Remove entire row and column in the matrix containing the input values
Remove the entire row and column from the matrix containing specific values. The specified value can be a scalar or a vector. Fo...

etwa 5 Jahre vor

Gelöst


frame of the matrix
Given the matrix M, return M without the external frame.

etwa 5 Jahre vor

Gelöst


subtract central cross
Given an n-by-n square matrix, where n is an odd number, return the matrix without the central row and the central column.

etwa 5 Jahre vor

Beantwortet
Bellhop: index exceeds the number of array elements (0)
Check the quotation marks. AcousticToolbox input use the single quote " ' " for input. 260.0 1502.43 / ’A’ 0.0 260.0 1600....

etwa 5 Jahre vor | 1

| akzeptiert

Beantwortet
How to vertically combine two matrices with a space in-between them?
You can insert one row of NaN. An array or matrix must be filled with numbers and cannot have blanks (unless you use strings). ...

etwa 5 Jahre vor | 0

| akzeptiert

Beantwortet
Code to solve integral with cosine and theta
integrate it manually integrate it symbolically syms x f(x) = cos(x).^2 int(f(x), 0, pi/2) integrate it numerically x = li...

etwa 5 Jahre vor | 0

| akzeptiert

Beantwortet
Extracting elements from one matrix and placing in another
The following will do. i = [7 10 34 52 79 82 88 94 100 115] %posi SLP_top_10 = yearly_array2(:,:,i);

etwa 5 Jahre vor | 0

| akzeptiert

Gelöst


Close MATLAB with keyboard
Close MATLAB with keyboard without using mouse

etwa 5 Jahre vor

Gelöst


Back to basics 11 - Max Integer
Covering some basic topics I haven't seen elsewhere on Cody. Return the largest positive integer MATLAB can handle.

etwa 5 Jahre vor

Beantwortet
How does division "/" = work for integer types?
MATLAB rounds the results when dividing integer data types. That is to say: uint32(1) /uint32(2) = round(1/2) = round(0.5) =1 ...

etwa 5 Jahre vor | 0

| akzeptiert

Beantwortet
Simple for Loop calculation help MATLAB!
Using loop (for integer number of years): P0 = 1000; r = 0.05; y = 3; P = P0; % initialization for i=1:y P = P0*...

etwa 5 Jahre vor | 0

| akzeptiert

Beantwortet
Plotting multiple images in subplot with reducing subplot distance and make title inside the each subplot images
Use tiledlayout to control the gaps. You can use text(x,y, 'title') to place text anywhere. % loose' (default) | 'compact' | '...

etwa 5 Jahre vor | 1

| akzeptiert

Beantwortet
how to south outside text
bar(rand(5,2)); % some plot legend('A', 'B', 'Location', 'southoutside'); % legend can be placed southout...

etwa 5 Jahre vor | 0

Beantwortet
Why do I get an error message when I questdlg function
Add the default button (last argument) to be one of the specified buttons: answer1 = questdlg('Strained Method?', ... 'Option...

etwa 5 Jahre vor | 0

| akzeptiert

Gelöst


Evil Number
Check if a given natural number is evil or not. Read more at <https://oeis.org/A001969 OEIS>.

etwa 5 Jahre vor

Gelöst


N-th Odious
Given index n return n-th <https://oeis.org/A000069 odious number>.

etwa 5 Jahre vor

Gelöst


Find the 9's Complement
Find the 9's complement of the given number. An example of how this works is <http://electrical4u.com/9s-complement-and-10s-c...

etwa 5 Jahre vor

Gelöst


Write c^3 as sum of two squares a^2+b^2
write c^3 as sum of two squares a^2+b^2. a and b must be integer and greater than zero. For example 5^3 = 2^2 + 11^2 5...

etwa 5 Jahre vor

Mehr laden