필터 지우기
필터 지우기

How can I make a variable equal a script in Matlab

조회 수: 2 (최근 30일)
ARAH MIZORI
ARAH MIZORI 2021년 8월 30일
댓글: Sahil Jain 2021년 9월 2일
I want to make this script:
c = 4500:30:7500;
first = 0:150;
second = 150:250;
third = 250:325;
x = 0.2*first;
y = c./second;
z = -(0.4)*third+130;
plot(first, x, second, y, third, z)
Be the variable for v in this script:
clc
clear
close all
v = (velocity_array);
s = sumAreaP4(v);
disp (x)
sumAreaP4:
function [s]=sumAreaP4(v)
j=length(v);
t=0.1;
A=0.5*t*v(1);
s=A;
for i=2:j
A(i)=0.5*t*(v(i-1)+v(i));
s(i)=s(i-1)+A(i);
end
end
Thank you
  댓글 수: 4
DGM
DGM 2021년 8월 30일
Which array? It's a script with multiple variables. You're essentially asking how to make a function, but you haven't described what the function is even supposed to return.
Sahil Jain
Sahil Jain 2021년 9월 2일
As the other users commented, please provide more details as to which array from the first script you would like to use in the second script.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by