Tagged Questions
1
vote
2answers
67 views
Avoid nested for loops in distance comparison
I have two lists of objects; I would like to perform operation on a given list 2 object, only if it is within the boundaries of the current list 1 object.
Something like this :
for ...
0
votes
2answers
108 views
Scilab, add text to an image
I would like to add text in an image using Scilab; at first I wanted to use SIVP imshow, but it turns out this function does not return a handle. IPD's ShowImage on the other hand does return a ...
0
votes
1answer
97 views
Using a MATLAB code on Scilab
a quick question. Is it possible to use a MATLAB code on Scilab? Is that what is meant when saying that Scilab is a "clone" from MATLAB?
0
votes
1answer
145 views
how to get a part of vector in matlab
I want to get parts of a vector V with width W
As a result, I want to get M = N*M, so that if I say M(2,:), I will get all the values of V(2*W : 3*W).
Any Ideas?
3
votes
1answer
136 views
SciLab checkbox UIControl value not changing with state?
I'm trying to design a GUI in SciLab that updates it's properties depending on a checkmark. For example: A checkbox might enable and change the backrounds of several text boxes during a callback; or a ...
0
votes
2answers
147 views
siemens star with scilab
I'm trying to draw siemens star with scilab and I don't get it done any idea why it doesn't work ? :
t = 0:.001:2*%pi;
xc = 4;
yc= 4;
r =2 ;
n = 1:length(t)/32 : length(t);
v =0:.001:r;
for k ...
0
votes
2answers
111 views
Scilab several custom functions
I have several functions in different .sci files. Also, these files are in different directories. These functions are used by a main program.
With old Scilab versions I have used getf(...) to load ...
1
vote
2answers
461 views
SciLab Plotting
How would you plot these in SciLab or MatLab? I am new to these and have no idea how the software works. Please help.
$Plot following functions with different colors in Scilab or MatLab
– f2(x) = ...
0
votes
2answers
115 views
Stable vector of probabilities
I'm trying to make a program in scilab (hopefully the same applies to matlab) to get the time where a stable vector is found, I mean, after making several times the product vector and matrix the ...
2
votes
2answers
2k views
Accessing variable by string name
I need to load experimental data into scicoslab, a (pretty badly designed) clone of scilab which happens to support graphical modeling. The documentation on the web is pretty poor, but it's reasonably ...
3
votes
1answer
741 views
Extract .mat data without matlab - tried scilab unsuccessfully
I've downloaded a data set that I am interested in. However, it is in .mat format and I do not have access to Matlab.
I've done some googling and it says I can open it in SciLab.
I tried a few ...
0
votes
1answer
241 views
Scilab plots in -nogui mode
Is it possible to plot graphs when running Scialb in -nogui mode ?
I tried the following :
saket@launchpad:~$scilab -nogui
-->x=[1:10];
-->y= sin(x);
-->plot2d(x,y)
which gives the ...
0
votes
1answer
312 views
user-friendly application entry points in MATLAB or SciLab
I have an application I would like to write in either MATLAB or SciLab. This question is not about the application itself, but about entry points.
I would like a way for users to click on an icon or ...
0
votes
2answers
325 views
Scilab: “first and second input arguments must be real at line 53 of function histplot”
Why does this piece of code fail in Scilab?
N=1000;
U=rand(N, 1);
X=(9*U - 1)^(1/3);
histplot(200, X);
1
vote
2answers
2k views
Invalid index error in Scilab when trying to access array element
I'm not sure why I can't do this in Scilab.
-->foo=zeros(500);
-->foo(300)
!--error 21
Invalid index.
Why do I get the 'Invalid index' error? I thought I had initialized foo as an ...
4
votes
3answers
586 views
Faster projected-norm (quadratic-form, metric-matrix…) style computations
I need to perform lots of evaluations of the form
X(:,i)' * A * X(:,i) i = 1...n
where X(:,i) is a vector and A is a symmetric matrix. Ostensibly, I can either do this in a loop
for i=1:n
...
8
votes
3answers
2k views
what advantages MATLAB has over SCILAB and vice versa?
hello
i'm a computer systems engineering undergraduate student, i just want to know what advantages MATLAB has over SCILAB and vice versa other than that SCILAB is freeware.
i mean from a computer ...
3
votes
2answers
3k views
Porting matlab functions to scilab. How to use symbolic?
I'm porting some matlab functions to scilab. The cool thing is that there is a conversion toolbox that make things very easy.
The problem is I did not find the counter part to the syms function, and ...