답변 있음
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...

2년 초과 전 | 0

| 수락됨

답변 있음
Save variable of workspace in another folder
save('C:\Users\Desktop\folder\POWER.mat', 'POWER')

2년 초과 전 | 4

| 수락됨

답변 있음
Non-functioning function
if length(N) > 1

2년 초과 전 | 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...

2년 초과 전 | 0

| 수락됨

답변 있음
a vector of hours
hours(0 : 23)

2년 초과 전 | 0

답변 있음
Why do I get the error "Unrecognized function or variable" with this
I don't know why you deleted your question and changed your name. 1) Why do you name a variable as the same name of a FUNCTION....

2년 초과 전 | 0

| 수락됨

답변 있음
Integral2 Error message
F = @(x,y) x./y + y./x q = integral2(F,1,2,1,4)

2년 초과 전 | 0

| 수락됨

답변 있음
How do I indicate phase changes on my velocity versus time plot on MATLAB?
t = [1.85 2.87 3.78 4.65 5.5 6.32 7.14 7.96 8.79 9.69]; d = 10: 10 : 100; v = gradient(d) ./ gradient(t); figure(1) dvdt = g...

2년 초과 전 | 0

답변 있음
Error with plotting a function
K = 10; r = .1; t = 0:1:100; solution1 = @(t,y) K .^ (1 - (exp(-t*r))); plot(t,(K.^(1 - (exp(t*r*-1)))), '-b');

2년 초과 전 | 0

| 수락됨

답변 있음
Specify the y value where the graph should start
%Variabler A_sveip = 2.27; luft_tett = 1.225; %Virkningsgrad v_0k5 = [0:0.5:30.5]; P_0k5 = [0 0 0 0 0 20 30 50 70 95 120 ...

2년 초과 전 | 0

| 수락됨

답변 있음
n乗根が小数で表されてしまうがn乗根のまま表記して欲しい
sqrt(sym(2)) sqrt(2)

2년 초과 전 | 1

| 수락됨

답변 있음
Position of element in a row
Use second output of find() help find

2년 초과 전 | 0

| 수락됨

답변 있음
Breaking equations down into parts while retaining output
atimesb = a * b; ctimesd = c * d; eqn = MyTotal == atimesb + ctimesd

2년 초과 전 | 0

| 수락됨

답변 있음
Unrecognized function or variable
Following Steven’s answer would clear that error but you will have a following error, so change that part of your code to the fo...

2년 초과 전 | 0

답변 있음
How do you name single output functions?
result = @(in) in.^2; result = result(1 : 10)

2년 초과 전 | 0

답변 있음
Subtract rows and Save the outputs in a new column
Use readtable(), diff() and finally writetable().

2년 초과 전 | 0

답변 있음
Display symbolic expressions as rational.
syms x sympref('FloatingPointOutput',true); (1/2)*(3*x^2) sympref('FloatingPointOutput',false); (1/2)*(3*x^2)

2년 초과 전 | 2

| 수락됨

답변 있음
getting an equation from multiple variables
MAtrix = [3, 6, 1, 3, 8; 3, 6, 1, 3, 9]; syms x y z w Out Out * MAtrix(:, 1) == (MAtrix(:, 2 : end) * [x, y, z, w].') % someth...

2년 초과 전 | 0

답변 있음
グラフの目盛りを片方だけ非表示にする方法
set(gca, 'Ytick', 'none')

2년 초과 전 | 0

| 수락됨

답변 있음
SS2TF Error
State space representation should be with numerical values and it cnnot contain symbolic values.

2년 초과 전 | 0

답변 있음
Using a loop to calculate max values
You were almost close. plot(max(temp.temp, [], 2))

2년 초과 전 | 0

답변 있음
Using data from a table in matlab script
https://www.mathworks.com/help/matlab/matlab_prog/access-data-in-a-table.html

2년 초과 전 | 0

답변 있음
How to make vector array value zero after certain index?
Matrix(556 : end, 1 : 2) = 0 % size 1001 X 4

2년 초과 전 | 0

답변 있음
Converting txt file with words into equal-sized matrices
P.S: The word numbers was at the 21st column so that part was automatically excluded since you were interested in 19 columns onl...

2년 초과 전 | 0

| 수락됨

답변 있음
Recording variables that satisfy a condition
X = linspace(0,1,100); Y = linspace(0,1,100); Z = linspace(0,1,100); [XX, YY, ZZ] = meshgrid(X, Y, Z); XYZ = XX + YY + ZZ; ...

2년 초과 전 | 0

| 수락됨

답변 있음
Convert cell of matrix into one matrix
B = cat(1, A{:})

2년 초과 전 | 0

| 수락됨

답변 있음
Centering Matrix Culumn Data
ii = 33 x = randi([0, 1], 4) * ii % they are automatically centered xD

2년 초과 전 | 0

| 수락됨

더 보기