Varargin - mistake in my example
Hi everyone, I wrote the following function:
function [x] = ingressi_arbitrari(varargin)
x=0;
for k=1:nargin
...
7 years 前 | 2 个回答 | 0
2
个回答
提问
Output of sprintf - string?
Hi everyone,
on Matlab's documentation I read that sprintf is a function which takes as input data and returns a string. If I...
7 years 前 | 1 个回答 | 0
1
个回答
已回答 Count number 1 in the row
z=[0 0 0 1 0 1 0 0];
a=length(z);
b=0;
for i=1:a
if(z(i)==1)
b=b+1;
end
end
Adding third dimenstion to 2D plot
Hi everyone, I'd like to plot three functions:
x=[-20:0.001:20];
y1=sin(x);
y2=x*x+x;
y3=x*x*x;
where y1(x) sta...
8 years 前 | 1 个回答 | 0
1
个回答
提问
solution of differential equation
Hi everyone, how could I solve dx/dt + x = sqrts(sin^2(t)) on Matlab? I tried with statements:
close all
clear all
t=[0:0.0...
8 years 前 | 1 个回答 | 0
1
个回答
提问
Handle of a figure
Hi, I read that the command gcf is the handle of the current figure. What is an handle? If is a pointer, why it does not contain...