Risposto
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 (...

circa 3 anni fa | 0

Risposto
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,...

circa 3 anni fa | 0

| accettato

Risposto
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 =...

circa 3 anni fa | 1

| accettato

Risposto
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...

circa 3 anni fa | 0

| accettato

Risolto


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 ...

circa 3 anni fa

Risolto


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 ...

circa 3 anni fa

Risolto


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...

circa 3 anni fa

Risolto


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 ...

circa 3 anni fa

Risposto
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...

circa 3 anni fa | 0

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

circa 3 anni fa | 1

Risolto


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'...

circa 3 anni fa

Risolto


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...

circa 3 anni fa

Risolto


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...

circa 3 anni fa

Risolto


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

circa 3 anni fa

Risolto


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.

circa 3 anni fa

Risposto
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....

circa 3 anni fa | 1

| accettato

Risposto
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). ...

circa 3 anni fa | 0

| accettato

Risposto
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...

circa 3 anni fa | 0

| accettato

Risposto
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);

circa 3 anni fa | 0

| accettato

Risolto


Close MATLAB with keyboard
Close MATLAB with keyboard without using mouse

circa 3 anni fa

Risolto


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.

circa 3 anni fa

Risposto
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 ...

circa 3 anni fa | 0

| accettato

Risposto
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*...

circa 3 anni fa | 0

| accettato

Risposto
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' | '...

circa 3 anni fa | 1

| accettato

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

circa 3 anni fa | 0

Risposto
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...

circa 3 anni fa | 0

| accettato

Risolto


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

circa 3 anni fa

Risolto


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

circa 3 anni fa

Risolto


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...

circa 3 anni fa

Risolto


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...

circa 3 anni fa

Carica altro