已回答
How to average certain columns in a matrix
T = array2table(rand(2, 3)) T = [T(:, 1), array2table(mean(T{:, 2 : end}, 2), 'V', {'AVERAGE'})] % where Var1 is the time data

3 years 前 | 0

已回答
How to average certain columns in a matrix
matrix = rand(107, 16); Matrix = [matrix(:, 1), mean(matrix(:, 2 : end), 2)]; size(Matrix)

3 years 前 | 0

| 已接受

已回答
Logical Indexing with matrix
C( A & B ) = C( A & B ) + 1

3 years 前 | 0

| 已接受

已回答
How can I make this work, I don't know where i went wrong.
1 / (1 + cos(4*x)) %is not the same as 1 / 1 + cos(4*x) % likewise for last question

3 years 前 | 0

| 已接受

已回答
can anyone help me to solve these error
function [y] = specvol(V) % change capital V to v

3 years 前 | 1

| 已接受

已回答
SIMPLE MATH ERROR CALCULATION
Click on the tag floating-point round((9.2^2 * 1e2) / 1e2, 3) % since you're using a hardware , not sure using a sym class woul...

3 years 前 | 0

已回答
convert data from two 3D arrays into three 2D arrays
https://www.mathworks.com/matlabcentral/answers/304528-tutorial-why-variables-should-not-be-named-dynamically-eval A = rand(2,...

3 years 前 | 0

已回答
This is my attempt to generate and plot this signal .. which one of these is right? .. please help
A = 3; [B, C] = deal(4); u = @(t) t >= 3 + 0.5 * A; u1 = @(t) t >= 3 - 0.5 * A; u2 = @(t) t >= C + 0.5 * B; u3 = @(t) t >= ...

3 years 前 | 1

| 已接受

已回答
Saving a Matrix as an Image and then extracting same matrix from Image.
SMAG = im2double(b) %

3 years 前 | 0

| 已接受

已回答
How to find the mean of 12 different 3-D arrays containing nan so that I can omitnan in the final calculations?
Use mean() with "Omitnan" flag help mean

3 years 前 | 0

| 已接受

已回答
連続時間系のサンプリングと離散フーリエ変換
https://www.mathworks.com/help/matlab/ref/fft.html a good starting point

3 years 前 | 0

已回答
theory parts from the documentation -usage
The volunteers here are there to contribute to questions related to coding. For legal questions you would be better off to conta...

3 years 前 | 0

提问


Is there a way to viewmark as images?
Any possible way to extract viewmarks from Simulink as images?

3 years 前 | 1 个回答 | 0

1

个回答

已回答
Moving specific .mat files to a new folder
help movefile

3 years 前 | 0

已回答
Data Plotting in a Single Figure
U = setdiff(10 : 10: 100, 80 : 10 : 90); V = 1e2 : 50 : 450; X = sort(randi(400, size(U))); Y = sort(randi(98, size(U))) .*...

3 years 前 | 0

| 已接受

已回答
how to sum a result with multiple values
You literally answered your own question, just use sum() help sum

3 years 前 | 1

| 已接受

已回答
How to use Solver?
Use vpasolve()

3 years 前 | 0

| 已接受

已回答
Index a Matrix that gets smaller
for ind = size(RAW): -1 : 2

3 years 前 | 0

| 已接受

已回答
Error on my matrix
t_pn = (im2double(t) + p.' / 2) / 2;

3 years 前 | 0

已回答
i have an Error using ^
Change * to .* in all the places.

3 years 前 | 0

| 已接受

已回答
Save a double array to a text file
https://www.mathworks.com/matlabcentral/answers/4175-how-to-save-a-matrix-as-text-file#answer_5892

3 years 前 | 0

已回答
problem in solving matrix
I = A \ V

3 years 前 | 0

已回答
Can't solve for x with (a = y/x)
syms y a x eqn = a == y/x; s = solve(eqn, x)

3 years 前 | 0

已回答
solving symbolic array to output a numerical solution
struct2array(Ma3)

3 years 前 | 0

已回答
removing rows from a timetable
load combined_observed_vs_sim_timetable combined_data(1 : 12, :) = [ ]

3 years 前 | 0

已回答
Array indices must be positive integers or logical values.
ii = 0.01:0.02:0.99; w1_temp= ii; w2_temp= 1-ii; Rp_temp= w1_temp*mean(R_2(:,1))+w2_temp*mean(R_2(:,2)); ...

3 years 前 | 0

已回答
Why does contains(var1, var2) find matches in two different string arrays?
ch_names = {'FP1','FPz','FP2','AF7','AF3','AF4','AF8','F7','F5','F3',... 'F1','Fz','F2','F4','F6','F8','FT7','FC5','FC1...

3 years 前 | 0

| 已接受

已回答
Save variable of workspace in another folder
save('C:\Users\Desktop\folder\POWER.mat', 'POWER')

3 years 前 | 4

| 已接受

已回答
Non-functioning function
if length(N) > 1

3 years 前 | 0

| 已接受

已回答
How do I save filenames in a for loop for later access?
C = cell(nnz(~fn(k).isdir), 1); % before loop function C = filnamn(katalog) % displays the names of all files in given diretor...

3 years 前 | 0

| 已接受

加载更多