Respondida
a vector of hours
hours(0 : 23)

alrededor de 3 años hace | 0

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

alrededor de 3 años hace | 0

| aceptada

Respondida
Integral2 Error message
F = @(x,y) x./y + y./x q = integral2(F,1,2,1,4)

alrededor de 3 años hace | 0

| aceptada

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

alrededor de 3 años hace | 0

Respondida
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');

alrededor de 3 años hace | 0

| aceptada

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

alrededor de 3 años hace | 0

| aceptada

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

alrededor de 3 años hace | 1

| aceptada

Respondida
Position of element in a row
Use second output of find() help find

alrededor de 3 años hace | 0

| aceptada

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

alrededor de 3 años hace | 0

| aceptada

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

alrededor de 3 años hace | 0

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

alrededor de 3 años hace | 0

Respondida
Subtract rows and Save the outputs in a new column
Use readtable(), diff() and finally writetable().

alrededor de 3 años hace | 0

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

alrededor de 3 años hace | 2

| aceptada

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

alrededor de 3 años hace | 0

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

alrededor de 3 años hace | 0

| aceptada

Respondida
SS2TF Error
State space representation should be with numerical values and it cnnot contain symbolic values.

alrededor de 3 años hace | 0

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

alrededor de 3 años hace | 0

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

alrededor de 3 años hace | 0

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

alrededor de 3 años hace | 0

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

alrededor de 3 años hace | 0

| aceptada

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

alrededor de 3 años hace | 0

| aceptada

Respondida
Convert cell of matrix into one matrix
B = cat(1, A{:})

alrededor de 3 años hace | 0

| aceptada

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

más de 3 años hace | 0

| aceptada

Respondida
plot not displaying figure
shg % at the end perhaps?

más de 3 años hace | 1

| aceptada

Respondida
Why can't I calculate the definite integral?
h_min=0.5; h_max=1.16; pom_lc=1.21; syms t f = 1-exp(t/pom_lc) F = vpaintegral(f, t, [h_min h_max]) % double(), vpa() will ...

más de 3 años hace | 0

Respondida
Evaluation of Integration without Loops
help trapz

más de 3 años hace | 0

Respondida
How to produce line plot yline for matlab R2018a
Start = 0; % sorry I completely misinterpreted the question xD End = 1; Point = 260; plot(linspace(Start, End, 1e2), repelem(...

más de 3 años hace | 1

| aceptada

Cargar más