Feeds
답변 있음
Select Structure Field Based on Variable
There is special notation to access structure or class field using parenthesis () of input string Structure.A = 5; Structure.B...
Select Structure Field Based on Variable
There is special notation to access structure or class field using parenthesis () of input string Structure.A = 5; Structure.B...
대략 2년 전 | 0
| 수락됨
답변 있음
Comparing a million data from csv files takes too much time
I assume, you want to calculate the number of nonzero difference data from one value to next to that value We can do without lo...
Comparing a million data from csv files takes too much time
I assume, you want to calculate the number of nonzero difference data from one value to next to that value We can do without lo...
대략 2년 전 | 1
| 수락됨
답변 있음
passing argument between functions
Assign x, y, z output of polystep, that can make your requirement possible function [t,v, x, y, z] = polystep() x = input('pr...
passing argument between functions
Assign x, y, z output of polystep, that can make your requirement possible function [t,v, x, y, z] = polystep() x = input('pr...
3년 초과 전 | 0
| 수락됨
답변 있음
fliping of audio in GUI
>>fliped_voice = flip(myvoice) >>plot(fliped_voice) % if you want you want listen fliped version >>flv = audioplayer(fliped_v...
fliping of audio in GUI
>>fliped_voice = flip(myvoice) >>plot(fliped_voice) % if you want you want listen fliped version >>flv = audioplayer(fliped_v...
3년 초과 전 | 0
답변 있음
arrange equation results from min to max to use after
t = [2993;3975.9;5063;6150;6919;8192.7;8862;10240.9;11488;12409.63;13545] f = @(t) (2.2/9500).*((t/9500).^1.2).*exp(-((t/9500)....
arrange equation results from min to max to use after
t = [2993;3975.9;5063;6150;6919;8192.7;8862;10240.9;11488;12409.63;13545] f = @(t) (2.2/9500).*((t/9500).^1.2).*exp(-((t/9500)....
3년 초과 전 | 0
| 수락됨
답변 있음
Create Plot Title of the Plotted Function
x = 0:.01:1; for i= 1:9 subplot(3,3,i) y = x.^i; plot(x, y, 'black') xlabel('x') ylabel('y') titl...
Create Plot Title of the Plotted Function
x = 0:.01:1; for i= 1:9 subplot(3,3,i) y = x.^i; plot(x, y, 'black') xlabel('x') ylabel('y') titl...
4년 초과 전 | 1
| 수락됨
답변 있음
Saving extracted audio files in a For loop
wor_dir = 'your_directory_path' for p = 1:3 startSample = n; endSample = length(data); extractedData = data(star...
Saving extracted audio files in a For loop
wor_dir = 'your_directory_path' for p = 1:3 startSample = n; endSample = length(data); extractedData = data(star...
4년 초과 전 | 0
| 수락됨
답변 있음
How to find and replace the content of an array
out = cellfun(@(x)datetime(x, 'Format','dd/MM/yyyy HH:mm:ss'), input_cell)
How to find and replace the content of an array
out = cellfun(@(x)datetime(x, 'Format','dd/MM/yyyy HH:mm:ss'), input_cell)
4년 초과 전 | 0
답변 있음
How to sum the diagonal numbers and numbers after the diagonal of a matrix
function summa = halfsum(inp_mat) summa = zeros(2,1); % first element is sum of diagonal elements, second is sum of dia...
How to sum the diagonal numbers and numbers after the diagonal of a matrix
function summa = halfsum(inp_mat) summa = zeros(2,1); % first element is sum of diagonal elements, second is sum of dia...
4년 초과 전 | 0
답변 있음
create zero column vector
zeros is the MATLAB function already, its not recommended to create again a function "createzerocolumnvector(x)", use direct com...
create zero column vector
zeros is the MATLAB function already, its not recommended to create again a function "createzerocolumnvector(x)", use direct com...
4년 초과 전 | 0
답변 있음
How to combine rows of cell array into corresponding single cell
c = cellfun(@(x, y){x,y}, a,b,'UniformOutput',false)
How to combine rows of cell array into corresponding single cell
c = cellfun(@(x, y){x,y}, a,b,'UniformOutput',false)
4년 초과 전 | 1
| 수락됨
답변 있음
Writing data to a file
fileid= fopen('data.dat','w'); fprintf(fileid, '%d\n', [1:20]'); fclose(fileid)
Writing data to a file
fileid= fopen('data.dat','w'); fprintf(fileid, '%d\n', [1:20]'); fclose(fileid)
4년 초과 전 | 0
| 수락됨
답변 있음
for loop, multiple plots in single plot
Vi = 25; t1 = [0:0.1:86.3]; t2 = [0:0.1:13.5]; t3 = [0:0.1:13.5]; t4 = [0:0.1:6]; g = [0.58 3.7 3.71 8.87]; hPluto = Vi .*...
for loop, multiple plots in single plot
Vi = 25; t1 = [0:0.1:86.3]; t2 = [0:0.1:13.5]; t3 = [0:0.1:13.5]; t4 = [0:0.1:6]; g = [0.58 3.7 3.71 8.87]; hPluto = Vi .*...
4년 초과 전 | 0
답변 있음
fprintf cell array of two classes
require = string(cell2mat(strcat(charArr,{' '}, num2str(doubArr))));
fprintf cell array of two classes
require = string(cell2mat(strcat(charArr,{' '}, num2str(doubArr))));
4년 초과 전 | 0
답변 있음
fprintf handles.Value?
if handles.Value is a string fprintf(f,'%s',handles.Value); if handles.Value is a float value fprintf(f,'%3.2f',str2num(ha...
fprintf handles.Value?
if handles.Value is a string fprintf(f,'%s',handles.Value); if handles.Value is a float value fprintf(f,'%3.2f',str2num(ha...
4년 초과 전 | 0
| 수락됨
답변 있음
How to get common sub string in cell array string?
fund_cell = regexp(cell_arr , 'A.A1', 'match'); result = [fund_cell{:}]
How to get common sub string in cell array string?
fund_cell = regexp(cell_arr , 'A.A1', 'match'); result = [fund_cell{:}]
4년 초과 전 | 0
답변 있음
Binarize a metrix with some threshold
A = randi([0, 1000], 5) % dummy marix A = 392 277 317 766 646 656 46 951 795 710 171 97 ...
Binarize a metrix with some threshold
A = randi([0, 1000], 5) % dummy marix A = 392 277 317 766 646 656 46 951 795 710 171 97 ...
4년 초과 전 | 0
답변 있음
if statement with vector
You are checking all values in the if conditioning, it gives pass condition if and only of all values are true, to avoid your si...
if statement with vector
You are checking all values in the if conditioning, it gives pass condition if and only of all values are true, to avoid your si...
4년 초과 전 | 3
답변 있음
How to find the middle element of a square array
function middleElement = FindMiddle(squareArray) % FindMiddle: Return the element in the center of squareArray % Inputs: sq...
How to find the middle element of a square array
function middleElement = FindMiddle(squareArray) % FindMiddle: Return the element in the center of squareArray % Inputs: sq...
4년 초과 전 | 2
답변 있음
Populate .csv with specific times and dates
required_times = t(hour(t)>12 & hour(t)<17) % where timings between 12 to 17 hours of the data
Populate .csv with specific times and dates
required_times = t(hour(t)>12 & hour(t)<17) % where timings between 12 to 17 hours of the data
4년 초과 전 | 0
답변 있음
Xor operation on two numbers
Since decimal to binary conversion may not produce same length of inputs to xor, we need to append 0's before the binary value ...
Xor operation on two numbers
Since decimal to binary conversion may not produce same length of inputs to xor, we need to append 0's before the binary value ...
4년 초과 전 | 0
| 수락됨
답변 있음
Index in position 1 is invalid. Array indices must be positive integers or logical values.
Index of the array start from 1 and it must be positive integer in MATLAB. In your code for loop i = 0:366 starting from 0 that...
Index in position 1 is invalid. Array indices must be positive integers or logical values.
Index of the array start from 1 and it must be positive integer in MATLAB. In your code for loop i = 0:366 starting from 0 that...
4년 초과 전 | 0
| 수락됨
답변 있음
How to read and arrange certain data in multiple text file?
FAM_data = readmatrix('FAM.txt'); FCC_data = readmatrix('FCC.txt'); FM2_data = readmatrix('FM2.txt');
How to read and arrange certain data in multiple text file?
FAM_data = readmatrix('FAM.txt'); FCC_data = readmatrix('FCC.txt'); FM2_data = readmatrix('FM2.txt');
4년 초과 전 | 0
| 수락됨
답변 있음
area of a circle function file / prompt and fprintf() output
function area_circle() radius = input('Enter the radius: '); area_cir = pi.*radius.^2; disp(['Area of circle: ', num2str(area...
area of a circle function file / prompt and fprintf() output
function area_circle() radius = input('Enter the radius: '); area_cir = pi.*radius.^2; disp(['Area of circle: ', num2str(area...
4년 초과 전 | 0
| 수락됨
답변 있음
Creating groups of 2 people from a cell array of names
n = 26; x = cellstr(char([65:65+n-1]')); % your cell data assumed rand_nums = reshape(randsample(n,n), n/2, 2); % random numbe...
Creating groups of 2 people from a cell array of names
n = 26; x = cellstr(char([65:65+n-1]')); % your cell data assumed rand_nums = reshape(randsample(n,n), n/2, 2); % random numbe...
4년 초과 전 | 0
답변 있음
Multiplying an entire table by a column from another table.
t1 = table; t2 = table; % table t1 t1.a = rand(10,1); t1.b = rand(10,1); % table t2 t2.c = rand(10, 1); %processed_data ...
Multiplying an entire table by a column from another table.
t1 = table; t2 = table; % table t1 t1.a = rand(10,1); t1.b = rand(10,1); % table t2 t2.c = rand(10, 1); %processed_data ...
4년 초과 전 | 0